blob: 3b237c293ab163f44e1c141c2744ee5aaa31c714 [file] [log] [blame]
package net.onrc.onos.registry.controller;
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);
}
}