Revision 104,
468 bytes
checked in by wojtekp, 13 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Line | |
---|
1 | package test.rewolucja.extensions; |
---|
2 | |
---|
3 | public class ExtensionException extends Exception { |
---|
4 | |
---|
5 | private static final long serialVersionUID = -3388688857266748587L; |
---|
6 | |
---|
7 | public ExtensionException() { |
---|
8 | super(); |
---|
9 | } |
---|
10 | |
---|
11 | public ExtensionException(String message) { |
---|
12 | super(message); |
---|
13 | } |
---|
14 | |
---|
15 | public ExtensionException(String message, Throwable cause) { |
---|
16 | super(message, cause); |
---|
17 | } |
---|
18 | |
---|
19 | public ExtensionException(Throwable cause) { |
---|
20 | super(cause); |
---|
21 | } |
---|
22 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.