View Javadoc

1   /*
2    * ConfigurationException.java
3    * Part of the yawn project
4    * Created on 07-oct-2004 by marti.
5    *
6    */
7   package yawn.config;
8   
9   import yawn.YawnException;
10  
11  /***
12   * This is yawn.nn.ConfigurationException, part of the yawn project.
13   * 
14   * <p>$Id: ConfigurationException.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 ConfigurationException extends YawnException {
20      /***
21       * 
22       */
23      private static final long serialVersionUID = 3832899940551504182L;
24  
25      /***
26       * 
27       */
28      public ConfigurationException() {
29          super();
30      }
31  
32      /***
33       * @param arg0
34       */
35      public ConfigurationException(String arg0) {
36          super(arg0);
37      }
38  
39      /***
40       * @param arg0
41       * @param arg1
42       */
43      public ConfigurationException(String arg0, Throwable arg1) {
44          super(arg0, arg1);
45      }
46  
47      /***
48       * @param arg0
49       */
50      public ConfigurationException(Throwable arg0) {
51          super(arg0);
52      }
53  }