KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SOFA > Connector > EEG > fileutil > DeleteException


1 /*
2  * DeleteException.java
3  *
4  * Created on 10. duben 2002, 12:42
5  */

6
7 package SOFA.Connector.EEG.fileutil;
8
9 /**
10  *
11  * @author ghort
12  * @version
13  */

14 public class DeleteException extends java.lang.Exception JavaDoc {
15
16     /**
17      * Creates new <code>__NAME__</code> without detail message.
18      */

19     public DeleteException() {
20         super();
21     }
22     
23     /**
24      * Constructs an <code>DeleteException</code> with the specified detail message.
25      * @param msg the detail message.
26      */

27     public DeleteException(String JavaDoc msg) {
28         super(msg);
29     }
30
31     public DeleteException(String JavaDoc msg, Throwable JavaDoc e) {
32         super(msg,e);
33     }
34 }
35
36
37
Popular Tags