Skip to content
Snippets Groups Projects
Commit 93bd1935 authored by Gregor Maier's avatar Gregor Maier
Browse files

more unit tests and javadocs

parent bfcae243
No related branches found
No related tags found
No related merge requests found
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;
......
package net.floodlightcontroller.core;
/**
* Thrown when a switch driver's sub-handshake has not been started but an
* operation requiring the sub-handshake has been attempted.
* @author gregor
*
*/
public class SwitchDriverSubHandshakeNotStarted extends
SwitchDriverSubHandshakeException {
private static final long serialVersionUID = -5491845708752443501L;
......
package net.floodlightcontroller.core;
/**
* Thrown when a switch driver's sub-handshake state-machine receives an
* unexpected OFMessage and/or is in an invald state
* @author gregor
*
*/
public class SwitchDriverSubHandshakeStateException extends
SwitchDriverSubHandshakeException {
private static final long serialVersionUID = -8249926069195147051L;
public SwitchDriverSubHandshakeStateException(String msg) {
super(msg);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment