01: package com.uvw.travel;
02:
03: /**
04: * @author Adrian Price
05: */
06: public class BookingException extends Exception {
07: public BookingException() {
08: }
09:
10: public BookingException(String message) {
11: super (message);
12: }
13:
14: public BookingException(Throwable cause) {
15: super (cause);
16: }
17:
18: public BookingException(String message, Throwable cause) {
19: super(message, cause);
20: }
21: }
|