View Javadoc

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