blob: fcc14a6d1c4305c3c047adfdac5c4c2a1e0efc0e [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;
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 Hart57080fb2013-02-21 10:55:46 -080012
Jonathan Hart1be46262013-02-20 16:43:51 -080013 public RegistryException(String message) {
14 super(message);
15 // TODO Auto-generated constructor stub
16 }
17
18 public RegistryException(Throwable cause) {
19 super(cause);
20 // TODO Auto-generated constructor stub
21 }
Jonathan Hart57080fb2013-02-21 10:55:46 -080022 */
23
Jonathan Hart1be46262013-02-20 16:43:51 -080024 public RegistryException(String message, Throwable cause) {
25 super(message, cause);
Jonathan Hart1be46262013-02-20 16:43:51 -080026 }
27
Jonathan Hart1be46262013-02-20 16:43:51 -080028}