blob: 6091a866710d4929368408c037ef20c78757b755 [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001package net.onrc.onos.of.ctl.internal;
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 *
7 */
8public class SwitchDriverSubHandshakeStateException extends
9 SwitchDriverSubHandshakeException {
10 private static final long serialVersionUID = -8249926069195147051L;
11
12 public SwitchDriverSubHandshakeStateException(String msg) {
13 super(msg);
14 }
15}