javax.xml.datatype
public class DatatypeConfigurationException extends Exception
Indicates a serious configuration error.
TODO: support all constructorsSince: 1.5
Version: $Revision: 446598 $, $Date: 2006-09-15 08:55:40 -0400 (Fri, 15 Sep 2006) $
| Constructor Summary | |
|---|---|
| DatatypeConfigurationException() Create a new | |
| DatatypeConfigurationException(String message) Create a new | |
| DatatypeConfigurationException(String message, Throwable cause) Create a new | |
| DatatypeConfigurationException(Throwable cause) Create a new | |
| Method Summary | |
|---|---|
| void | printStackTrace()
Print the the trace of methods from where the error
originated. |
| void | printStackTrace(PrintStream s)
Print the the trace of methods from where the error
originated. |
| void | printStackTrace(PrintWriter s)
Print the the trace of methods from where the error
originated. |
Create a new DatatypeConfigurationException with
no specified detail mesage and cause.
Create a new DatatypeConfigurationException with
the specified detail message.
Parameters: message The detail message.
Create a new DatatypeConfigurationException with
the specified detail message and cause.
Parameters: message The detail message. cause The cause. A null value is permitted, and indicates that the cause is nonexistent or unknown.
Create a new DatatypeConfigurationException with
the specified cause.
Parameters: cause The cause. A null value is permitted, and indicates that the cause is nonexistent or unknown.
Parameters: s The stream where the dump will be sent to.
Parameters: s The writer where the dump will be sent to.