Constructors Summary |
---|
public DatatypeConfigurationException()Create a new DatatypeConfigurationException with
no specified detail mesage and cause.
super();
|
public DatatypeConfigurationException(String message)Create a new DatatypeConfigurationException with
the specified detail message.
super(message);
|
public DatatypeConfigurationException(String message, Throwable cause)Create a new DatatypeConfigurationException with
the specified detail message and cause.
super(message, cause);
|
public DatatypeConfigurationException(Throwable cause)Create a new DatatypeConfigurationException with
the specified cause.
super(cause);
|