View Javadoc
1   /*
2    * DomHandlerException.java
3    *
4    * Created on December 22, 2004, 3:47 PM
5    */
6   
7   package gov.noaa.eds.xapi.generic;
8   
9   /*** A gernic exception to be thrown by {@link DomHandler} implementations.
10   * @version $Id: DomHandlerException.java,v 1.2 2004/12/23 22:26:01 mrxtravis Exp $
11   * @author tns
12   */
13  public class DomHandlerException extends java.lang.Exception {
14      
15      /***
16       * Creates a new instance of <code>DomHandlerException</code> without detail message.
17       */
18      public DomHandlerException() {
19      }
20      
21      
22      /***
23       * Constructs an instance of <code>DomHandlerException</code> with the specified detail message.
24       * @param msg the detail message.
25       */
26      public DomHandlerException(String msg) {
27          super(msg);
28      }
29      
30      /***
31       * Constructs an instance of <code>DomHandlerException</code> with the specified root cause.
32       * @param thr the root cause.
33       */
34      public DomHandlerException(Throwable thr) {
35          super(thr);
36      }
37  
38      /***
39       * Constructs an instance of <code>DomHandlerException</code> with the specified detail message.
40       * @param msg the detail message.
41       */
42      public DomHandlerException(String msg,Throwable thr) {
43          super(msg,thr);
44      }
45      
46      
47  }