View Javadoc
1   package ejava.examples.asyncmarket.ejb;
2   
3   public class InternalErrorException extends RuntimeException {
4       private static final long serialVersionUID = 5244973890768213163L;
5       
6       public InternalErrorException(String format, Object...args) {
7           super(String.format(format, args));
8       }
9       public InternalErrorException(String msg) {
10          super(msg);
11      }
12      public InternalErrorException(Throwable ex, String msg) {
13          super(msg, ex);
14      }
15      public InternalErrorException(Throwable ex, String format, Object...args) {
16          super(String.format(format, args), ex);
17      }
18  }