Line | |
---|
1 | package omq.exception; |
---|
2 | |
---|
3 | public class AlreadyBoundException extends Exception { |
---|
4 | |
---|
5 | /** |
---|
6 | * |
---|
7 | */ |
---|
8 | private static final long serialVersionUID = 1L; |
---|
9 | |
---|
10 | public AlreadyBoundException() { |
---|
11 | super(); |
---|
12 | } |
---|
13 | |
---|
14 | public AlreadyBoundException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { |
---|
15 | super(message, cause, enableSuppression, writableStackTrace); |
---|
16 | } |
---|
17 | |
---|
18 | public AlreadyBoundException(String message, Throwable cause) { |
---|
19 | super(message, cause); |
---|
20 | } |
---|
21 | |
---|
22 | public AlreadyBoundException(String message) { |
---|
23 | super(message); |
---|
24 | } |
---|
25 | |
---|
26 | public AlreadyBoundException(Throwable cause) { |
---|
27 | super(cause); |
---|
28 | } |
---|
29 | |
---|
30 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.