blob: 1e680232fbefbc36729e7c97785c294047581a42 [file] [log] [blame]
tom9c94c5b2014-09-17 13:14:42 -07001package org.onlab.onos.openflow.controller.driver;
tom7ef8ff92014-09-17 13:08:06 -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}