View Javadoc

1   /*
2    * Part of the yawn project
3    * Created on 13-sep-2004 by marti.
4    *
5    */
6   package yawn.envs.delve;
7   
8   import yawn.YawnRuntimeException;
9   
10  /***
11   * This is yawn.envs.delve.DelveNotInitializedException, part of the yawn
12   * project.
13   * 
14   * <p>$Id: DelveNotInitializedException.java,v 1.4 2005/04/20 18:55:17 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 DelveNotInitializedException extends YawnRuntimeException {
20  
21      /***
22       * 
23       */
24      private static final long serialVersionUID = 3618697517534031922L;
25  
26      /***
27       * 
28       */
29      public DelveNotInitializedException() {
30          super();
31      }
32  
33      /***
34       * @param message
35       */
36      public DelveNotInitializedException(String message) {
37          super(message);
38      }
39  
40      /***
41       * @param cause
42       */
43      public DelveNotInitializedException(Throwable cause) {
44          super(cause);
45      }
46  
47      /***
48       * @param message
49       * @param cause
50       */
51      public DelveNotInitializedException(String message, Throwable cause) {
52          super(message, cause);
53      }
54  
55  }