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