blob: 49fdead66b89adcf0ef74dfefef3f6e2ba80ac40 [file] [log] [blame]
tom9ccd7812014-08-25 22:43:19 -07001package org.onlab.onos.of.controller.impl.internal;
tom0eb04ca2014-08-25 14:34:51 -07002
3/**
4 * Base class for exception thrown by switch driver sub-handshake processing.
5 *
6 */
7public class SwitchDriverSubHandshakeException extends RuntimeException {
8 private static final long serialVersionUID = -6257836781419604438L;
9
10 protected SwitchDriverSubHandshakeException() {
11 super();
12 }
13
14 protected SwitchDriverSubHandshakeException(String arg0, Throwable arg1) {
15 super(arg0, arg1);
16 }
17
18 protected SwitchDriverSubHandshakeException(String arg0) {
19 super(arg0);
20 }
21
22 protected SwitchDriverSubHandshakeException(Throwable arg0) {
23 super(arg0);
24 }
25
26}