Revision 5,
482 bytes
checked in by wojtekp, 14 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Rev | Line | |
---|
[5] | 1 | package schedframe.exceptions; |
---|
| 2 | |
---|
| 3 | /** |
---|
| 4 | * |
---|
| 5 | * @author Marcin Krystek |
---|
| 6 | * |
---|
| 7 | */ |
---|
| 8 | public class ReservationException extends ModuleException { |
---|
| 9 | |
---|
| 10 | private static final long serialVersionUID = -6262952168251799785L; |
---|
| 11 | |
---|
| 12 | public ReservationException(){ |
---|
| 13 | super(); |
---|
| 14 | } |
---|
| 15 | |
---|
| 16 | public ReservationException(String message){ |
---|
| 17 | super(message); |
---|
| 18 | } |
---|
| 19 | |
---|
| 20 | public ReservationException(Throwable cause){ |
---|
| 21 | super(cause); |
---|
| 22 | } |
---|
| 23 | |
---|
| 24 | public ReservationException(String message, Throwable cause){ |
---|
| 25 | super(message, cause); |
---|
| 26 | } |
---|
| 27 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.