View Javadoc

1   /*
2    * Part of the yawn project
3    * Created on 12-sep-2004 by marti.
4    */
5   package yawn;
6   
7   /***
8    * A runtime exception for controling response to the unexpected errors. 
9    * 
10   * <p>$Id: YawnRuntimeException.java,v 1.4 2005/04/20 18:55:18 supermarti Exp $</p>
11   * 
12   * @author Luis Mart&iacute; (luis dot marti at uc3m dot es)
13   * @version $Revision: 1.4 $
14   */
15  public class YawnRuntimeException extends RuntimeException {
16  
17      /***
18       * 
19       */
20      private static final long serialVersionUID = 3833184752617141299L;
21  
22      /***
23       * 
24       */
25      public YawnRuntimeException() {
26          super();
27      }
28  
29      /***
30       * @param message
31       */
32      public YawnRuntimeException(String message) {
33          super(message);
34      }
35  
36      /***
37       * @param cause
38       */
39      public YawnRuntimeException(Throwable cause) {
40          super(cause);
41      }
42  
43      /***
44       * @param message
45       * @param cause
46       */
47      public YawnRuntimeException(String message, Throwable cause) {
48          super(message, cause);
49      }
50  
51  }