KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > xml > datatype > DatatypeConfigurationException


1 // $Id: DatatypeConfigurationException.java,v 1.1 2004/03/06 00:22:23 jsuttor Exp $
2
/*
3  * @(#)DatatypeConfigurationException.java 1.2 04/07/26
4  *
5  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
6  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
7  */

8
9 package javax.xml.datatype;
10
11 /**
12  * <p>Indicates a serious configuration error.</p>
13  *
14  * TODO: support all constructors
15  *
16  * @author <a HREF="mailto:Jeff.Suttor@Sun.com">Jeff Suttor</a>
17  * @version $Revision: 1.1 $, $Date: 2004/03/06 00:22:23 $
18  * @since 1.5
19  */

20
21 public class DatatypeConfigurationException extends Exception JavaDoc {
22
23     /**
24      * <p>Create a new <code>DatatypeConfigurationException</code> with
25      * no specified detail mesage and cause.</p>
26      */

27
28     public DatatypeConfigurationException() {
29         super();
30     }
31
32     /**
33      * <p>Create a new <code>DatatypeConfigurationException</code> with
34      * the specified detail message.</p>
35      *
36      * @param message The detail message.
37      */

38     
39     public DatatypeConfigurationException(String JavaDoc message) {
40         super(message);
41     }
42
43     /**
44      * <p>Create a new <code>DatatypeConfigurationException</code> with
45      * the specified detail message and cause.</p>
46      *
47      * @param message The detail message.
48      * @param cause The cause. A <code>null</code> value is permitted, and indicates that the cause is nonexistent or unknown.
49      */

50     
51     public DatatypeConfigurationException(String JavaDoc message, Throwable JavaDoc cause) {
52         super(message, cause);
53     }
54
55     /**
56      * <p>Create a new <code>DatatypeConfigurationException</code> with
57      * the specified cause.</p>
58      *
59      * @param cause The cause. A <code>null</code> value is permitted, and indicates that the cause is nonexistent or unknown.
60      */

61     
62     public DatatypeConfigurationException(Throwable JavaDoc cause) {
63         super(cause);
64     }
65 }
66
Popular Tags