View Javadoc
1   package ejava.examples.txagent.bl;
2   
3   @SuppressWarnings("serial")
4   public class ReservationNotFoundException extends AgentReservationException {
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   }