org.projectfloodlight.openflow.exceptions.OFParseError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openflowj Show documentation
Show all versions of openflowj Show documentation
OpenFlowJ API supporting OpenFlow versions 1.0 through 1.5.1, generated by LoxiGen
The newest version!
package org.projectfloodlight.openflow.exceptions;
public class OFParseError extends Exception {
private static final long serialVersionUID = 1L;
public OFParseError() {
super();
}
public OFParseError(final String message, final Throwable cause) {
super(message, cause);
}
public OFParseError(final String message) {
super(message);
}
public OFParseError(final Throwable cause) {
super(cause);
}
}