blob: eb5541bf960694a1961882c24bf79e2536b41644 [file] [log] [blame]
Brian O'Connorc67f9fa2014-08-07 18:17:46 -07001package net.floodlightcontroller.core;
2
3/**
4 * Thrown when IOFSwitch.startDriverHandshake() is called more than once.
5 * @author gregor
6 *
7 */
8public class SwitchDriverSubHandshakeAlreadyStarted extends
9 SwitchDriverSubHandshakeException {
10 private static final long serialVersionUID = -5491845708752443501L;
11
12 public SwitchDriverSubHandshakeAlreadyStarted() {
13 super();
14 }
15}