Jonathan Hart | 1be4626 | 2013-02-20 16:43:51 -0800 | [diff] [blame] | 1 | package net.floodlightcontroller.mastership; |
| 2 | |
| 3 | public 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 | } |