KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > prefuse > data > parser > DataParseException


1 package prefuse.data.parser;
2
3 /**
4  * Exception indicating an error occurred during parsing of data values.
5  *
6  * @author <a HREF="http://jheer.org">jeffrey heer</a>
7  */

8 public class DataParseException extends Exception JavaDoc {
9
10     /**
11      * Create a new DataParseException.
12      */

13     public DataParseException() {
14         super();
15     }
16     
17     /**
18      * Create a new DataParseException.
19      * @param message a descriptive error message
20      */

21     public DataParseException(String JavaDoc message) {
22         super(message);
23     }
24
25     /**
26      * Create a new DataParseException.
27      * @param message a descriptive error message
28      * @param cause a Throwable (e.g., error or exception) that was the cause
29      * for this exception being thrown
30      */

31     public DataParseException(String JavaDoc message, Throwable JavaDoc cause) {
32         super(message, cause);
33     }
34
35     /**
36      * Create a new DataParseException.
37      * @param cause a Throwable (e.g., error or exception) that was the cause
38      * for this exception being thrown
39      */

40     public DataParseException(Throwable JavaDoc cause) {
41         super(cause);
42     }
43     
44 } // end of class DataParseException
45
Popular Tags