blob: 0c0c87390468b304db6865c04a228d7e351a73dc [file] [log] [blame]
Brian O'Connorc67f9fa2014-08-07 18:17:46 -07001package net.floodlightcontroller.core;
2
3/**
4 * Base class for exception thrown by switch driver sub-handshake processing
5 * @author gregor
6 *
7 */
8public class SwitchDriverSubHandshakeException extends RuntimeException {
9 private static final long serialVersionUID = -6257836781419604438L;
10
11 protected SwitchDriverSubHandshakeException() {
12 super();
13 }
14
15 protected SwitchDriverSubHandshakeException(String arg0, Throwable arg1) {
16 super(arg0, arg1);
17 }
18
19 protected SwitchDriverSubHandshakeException(String arg0) {
20 super(arg0);
21 }
22
23 protected SwitchDriverSubHandshakeException(Throwable arg0) {
24 super(arg0);
25 }
26
27}