blob: 134117cff1b2ed69fa22650a6bc68801ac2ab246 [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
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
12 public RegistryException(String message) {
13 super(message);
14 // TODO Auto-generated constructor stub
15 }
16
17 public RegistryException(Throwable cause) {
18 super(cause);
19 // TODO Auto-generated constructor stub
20 }
21
22 public RegistryException(String message, Throwable cause) {
23 super(message, cause);
24 // TODO Auto-generated constructor stub
25 }
26
27 public RegistryException(String message, Throwable cause,
28 boolean enableSuppression, boolean writableStackTrace) {
29 super(message, cause, enableSuppression, writableStackTrace);
30 // TODO Auto-generated constructor stub
31 }
Jonathan Hart74130222013-02-20 16:56:29 -080032 */
Jonathan Hart1be46262013-02-20 16:43:51 -080033
34}