blob: 09e737eba7a9a98e1ad6791551f0c55b5ae9889a [file] [log] [blame]
tom7ef8ff92014-09-17 13:08:06 -07001package org.onlab.onos.of.controller.driver;
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}