blob: fcc14a6d1c4305c3c047adfdac5c4c2a1e0efc0e [file] [log] [blame]
package net.floodlightcontroller.mastership;
public class RegistryException extends Exception {
private static final long serialVersionUID = -8276300722010217913L;
/*
public RegistryException() {
// TODO Auto-generated constructor stub
}
public RegistryException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public RegistryException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
*/
public RegistryException(String message, Throwable cause) {
super(message, cause);
}
}