blob: fbc68a447b186d37db3438db9453c83840b8ca39 [file] [log] [blame]
Jonathan Hartd82f20d2013-02-21 18:04:24 -08001package net.onrc.onos.registry.controller;
Jonathan Hart1be46262013-02-20 16:43:51 -08002
3public class RegistryException extends Exception {
4
5 private static final long serialVersionUID = -8276300722010217913L;
Jonathan Hart57080fb2013-02-21 10:55:46 -08006
Jonathan Hart74130222013-02-20 16:56:29 -08007 /*
Jonathan Hart1be46262013-02-20 16:43:51 -08008 public RegistryException() {
9 // TODO Auto-generated constructor stub
10 }
11
Jonathan Hart1be46262013-02-20 16:43:51 -080012 public RegistryException(Throwable cause) {
13 super(cause);
14 // TODO Auto-generated constructor stub
15 }
Jonathan Hart57080fb2013-02-21 10:55:46 -080016 */
17
Jonathan Hartd10008d2013-02-23 17:04:08 -080018 public RegistryException(String message) {
19 super(message);
20 }
21
Jonathan Hart1be46262013-02-20 16:43:51 -080022 public RegistryException(String message, Throwable cause) {
23 super(message, cause);
Jonathan Hart1be46262013-02-20 16:43:51 -080024 }
25
Jonathan Hart1be46262013-02-20 16:43:51 -080026}