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 | |
Jonathan Hart | 7413022 | 2013-02-20 16:56:29 -0800 | [diff] [blame] | 7 | /* |
Jonathan Hart | 1be4626 | 2013-02-20 16:43:51 -0800 | [diff] [blame] | 8 | 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 Hart | 7413022 | 2013-02-20 16:56:29 -0800 | [diff] [blame] | 32 | */ |
Jonathan Hart | 1be4626 | 2013-02-20 16:43:51 -0800 | [diff] [blame] | 33 | |
| 34 | } |