blob: f05aef8bcca9d5b2f01a5b0d930ef050b83bf115 [file] [log] [blame]
Jonathan Hartdeda0ba2014-04-03 11:14:12 -07001package net.onrc.onos.core.registry;
Jonathan Hart1be46262013-02-20 16:43:51 -08002
3public class RegistryException extends Exception {
4
Ray Milkey269ffb92014-04-03 14:43:30 -07005 private static final long serialVersionUID = -8276300722010217913L;
Jonathan Hart1be46262013-02-20 16:43:51 -08006
Ray Milkey269ffb92014-04-03 14:43:30 -07007 /*
8 public RegistryException() {
9 // TODO Auto-generated constructor stub
10 }
11
12 public RegistryException(Throwable cause) {
13 super(cause);
14 // TODO Auto-generated constructor stub
15 }
16 */
17
18 public RegistryException(String message) {
19 super(message);
20 }
21
22 public RegistryException(String message, Throwable cause) {
23 super(message, cause);
24 }
Jonathan Hart1be46262013-02-20 16:43:51 -080025
Jonathan Hart1be46262013-02-20 16:43:51 -080026}