blob: ebf564a89bf58e368c58a8bd58aae11ab34c3481 [file] [log] [blame]
Jonathan Hart1be46262013-02-20 16:43:51 -08001package net.floodlightcontroller.mastership;
2
3public class RegistryException extends Exception {
4
5 private static final long serialVersionUID = -8276300722010217913L;
6
7 public RegistryException() {
8 // TODO Auto-generated constructor stub
9 }
10
11 public RegistryException(String message) {
12 super(message);
13 // TODO Auto-generated constructor stub
14 }
15
16 public RegistryException(Throwable cause) {
17 super(cause);
18 // TODO Auto-generated constructor stub
19 }
20
21 public RegistryException(String message, Throwable cause) {
22 super(message, cause);
23 // TODO Auto-generated constructor stub
24 }
25
26 public RegistryException(String message, Throwable cause,
27 boolean enableSuppression, boolean writableStackTrace) {
28 super(message, cause, enableSuppression, writableStackTrace);
29 // TODO Auto-generated constructor stub
30 }
31
32}