blob: c7d68f3d0a1b77d93fcbb494c74fa2eb82c09547 [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001package net.onrc.onos.of.ctl.internal;
2
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}