javax.xml.datatype
public class DatatypeConfigurationException extends Exception
Indicates a serious configuration error.
Since: 1.5
Version: $Revision: 569987 $, $Date: 2007-08-27 07:08:46 +0300 (Mon, 27 Aug 2007) $
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 message 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.