javax.xml.datatype
public class DatatypeConfigurationException extends Exception
Indicates a serious configuration error.
TODO: support all constructorsSince: 1.5
Version: $Revision: 226210 $, $Date: 2005-06-03 14:54:52 -0400 (Fri, 03 Jun 2005) $
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.