View Javadoc

1   /*
2    * WebFlow Navigation Manager: webflow definiton, server side navigation history and automatic session cleaning.
3    * Distributed under LGPL license at web site http://wfnm.sourceforge.net .
4    */
5   package net.sf.wfnm;
6   
7   /***
8    * The configuration exception.<br>
9    *
10   * @author <a href="mailto:malbari@users.sourceforge.net">Maurizio Albari</a>
11   * @version 1.0.6
12   */
13  public class ConfigException extends RuntimeException {
14      /***
15       * Creates a new ConfigException object.
16       */
17      public ConfigException() {
18          super();
19      }
20  
21      /***
22       * Creates a new ConfigException object.
23       *
24       * @param message the exception message
25       */
26      public ConfigException(String message) {
27          super(message);
28      }
29  
30      /***
31       * Creates a new ConfigException object.
32       *
33       * @param message the exception message
34       * @param cause the cause of the exception
35       */
36      public ConfigException(String message, Throwable cause) {
37          super(message, cause);
38      }
39  
40      /***
41       * Creates a new ConfigException object.
42       *
43       * @param cause the cause of the exception
44       */
45      public ConfigException(Throwable cause) {
46          super(cause);
47      }
48  }