blob: 858ec0940640873fa2cba423c5b0cc6e55d7a53d [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 * Thrown when a switch driver's sub-handshake has not been started but an
5 * operation requiring the sub-handshake has been attempted.
6 *
7 */
8public class SwitchDriverSubHandshakeNotStarted extends
9 SwitchDriverSubHandshakeException {
10 private static final long serialVersionUID = -5491845708752443501L;
11
12 public SwitchDriverSubHandshakeNotStarted() {
13 super();
14 }
15}