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