KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > openedit > store > StoreException


1 /*
2  * Created on Apr 23, 2004
3  */

4 package com.openedit.store;
5
6 import com.openedit.OpenEditException;
7
8
9 /**
10  * @author cburkey
11  *
12  */

13 public class StoreException extends OpenEditException
14 {
15
16     /**
17      * Comment for <code>serialVersionUID</code>
18      */

19     private static final long serialVersionUID = 6500274868025584114L;
20     /**
21      * @param inE
22      */

23     public StoreException(Exception JavaDoc inEx)
24     {
25         super(inEx);
26     }
27     public StoreException()
28     {
29         super();
30     }
31     /**
32      * @param inString
33      */

34     public StoreException(String JavaDoc inString)
35     {
36         super(inString);
37     }
38     
39 }
40
Popular Tags