View Javadoc

1   package org.jmage;
2   
3   /***
4    * JmageException
5    */
6   public class JmageException extends Exception {
7       protected JmageException() {
8           super();
9       }
10  
11      public JmageException(String message) {
12          super(message);
13      }
14  
15      public JmageException(Throwable cause) {
16          super(cause);
17      }
18  
19      public JmageException(String message, Throwable cause) {
20          super(message, cause);
21      }
22  }