source: trunk/src/main/java/omq/exception/AlreadyBoundException.java @ 83

Last change on this file since 83 was 83, checked in by stoda, 11 years ago

J

File size: 618 bytes
Line 
1package omq.exception;
2
3public 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.