View Javadoc

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