blob: 1f49aea7ab60c9a58d77f7753f617b25015e4346 [file] [log] [blame]
Brian O'Connorc67f9fa2014-08-07 18:17:46 -07001package net.floodlightcontroller.core;
2
3/**
4 * Thrown when a switch driver's sub-handshake state-machine receives an
5 * unexpected OFMessage and/or is in an invald state
6 * @author gregor
7 *
8 */
9public class SwitchDriverSubHandshakeStateException extends
10 SwitchDriverSubHandshakeException {
11 private static final long serialVersionUID = -8249926069195147051L;
12
13 public SwitchDriverSubHandshakeStateException(String msg) {
14 super(msg);
15 }
16}