blob: eb5541bf960694a1961882c24bf79e2536b41644 [file] [log] [blame]
package net.floodlightcontroller.core;
/**
* Thrown when IOFSwitch.startDriverHandshake() is called more than once.
* @author gregor
*
*/
public class SwitchDriverSubHandshakeAlreadyStarted extends
SwitchDriverSubHandshakeException {
private static final long serialVersionUID = -5491845708752443501L;
public SwitchDriverSubHandshakeAlreadyStarted() {
super();
}
}