blob: d568cc616733f98125dd7971143cbc98696337e6 [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 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}