1 package ejava.examples.txhotel.bl;
2
3 @SuppressWarnings("serial")
4 public class HotelReservationException extends Exception {
5 public HotelReservationException() {}
6 public HotelReservationException(String msg) { super(msg); }
7 public HotelReservationException(String msg, Throwable ex) {super(msg, ex);}
8 public HotelReservationException(Throwable ex) { super(ex); }
9 }