View Javadoc

1   /*
2    * ValidationException.java
3    * Part of the yawn project
4    * Created on 04-dic-2004 by marti.
5    *
6    */
7   package yawn.config;
8   
9   import yawn.YawnException;
10  
11  /***
12   * This is yawn.config.ValidationException, part of the yawn project.
13   * 
14   * <p>$Id: ValidationException.java,v 1.4 2005/04/20 18:55:14 supermarti Exp $</p>
15   * 
16   * @author Luis Mart&iacute; (luis dot marti at uc3m dot es)
17   * @version $Revision: 1.4 $
18   */
19  public class ValidationException extends YawnException {
20  
21      /***
22       * 
23       */
24      private static final long serialVersionUID = 3545803186523681331L;
25  
26      /***
27       * 
28       */
29      public ValidationException() {
30          super();
31          // TODO Auto-generated constructor stub
32      }
33  
34      /***
35       * @param arg0
36       */
37      public ValidationException(String arg0) {
38          super(arg0);
39          // TODO Auto-generated constructor stub
40      }
41  
42      /***
43       * @param arg0
44       * @param arg1
45       */
46      public ValidationException(String arg0, Throwable arg1) {
47          super(arg0, arg1);
48          // TODO Auto-generated constructor stub
49      }
50  
51      /***
52       * @param arg0
53       */
54      public ValidationException(Throwable arg0) {
55          super(arg0);
56          // TODO Auto-generated constructor stub
57      }
58  
59  }