View Javadoc
1   package ejava.examples.webtier.bl;
2   
3   public class RegistrarException extends Exception {
4       private static final long serialVersionUID = 1L;
5       public RegistrarException() {}
6       public RegistrarException(String msg) { super(msg); }
7       public RegistrarException(String msg, Throwable th) { super(msg, th); }
8       public RegistrarException(Throwable th) { super(th); }
9   }