blob: 67ec68be2c1540f56db63632a0e82757cb92a719 [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 has not been started but an
5 * operation requiring the sub-handshake has been attempted.
6 * @author gregor
7 *
8 */
9public class SwitchDriverSubHandshakeNotStarted extends
10 SwitchDriverSubHandshakeException {
11 private static final long serialVersionUID = -5491845708752443501L;
12
13 public SwitchDriverSubHandshakeNotStarted() {
14 super();
15 }
16}