DatatypeConfigurationException
open class DatatypeConfigurationException : Exception
| kotlin.Any | |||
| ↳ | kotlin.Throwable | ||
| ↳ | java.lang.Exception | ||
| ↳ | javax.xml.datatype.DatatypeConfigurationException | ||
Indicates a serious configuration error.
Summary
| Public constructors | |
|---|---|
| 
            
             Create a new   | 
        |
            DatatypeConfigurationException(message: String!)Create a new   | 
        |
            DatatypeConfigurationException(message: String!, cause: Throwable!)Create a new   | 
        |
            DatatypeConfigurationException(cause: Throwable!)Create a new   | 
        |
| Public methods | |
|---|---|
| open Unit | 
            
             Print the the trace of methods from where the error originated.  | 
        
| open Unit | 
            
             Print the the trace of methods from where the error originated.  | 
        
| open Unit | 
            
             Print the the trace of methods from where the error originated.  | 
        
Public constructors
DatatypeConfigurationException
DatatypeConfigurationException()
Create a new DatatypeConfigurationException with no specified detail message and cause.
DatatypeConfigurationException
DatatypeConfigurationException(message: String!)
Create a new DatatypeConfigurationException with the specified detail message.
| Parameters | |
|---|---|
message | 
            String!: The detail message. | 
DatatypeConfigurationException
DatatypeConfigurationException(
message: String!,
cause: Throwable!)
Create a new DatatypeConfigurationException with the specified detail message and cause.
| Parameters | |
|---|---|
message | 
            String!: The detail message. | 
cause | 
            Throwable!: The cause. A null value is permitted, and indicates that the cause is nonexistent or unknown. | 
          
DatatypeConfigurationException
DatatypeConfigurationException(cause: Throwable!)
Create a new DatatypeConfigurationException with the specified cause.
| Parameters | |
|---|---|
cause | 
            Throwable!: The cause. A null value is permitted, and indicates that the cause is nonexistent or unknown. | 
          
Public methods
printStackTrace
open fun printStackTrace(): Unit
Print the the trace of methods from where the error originated. This will trace all nested exception objects, as well as this object.
printStackTrace
open fun printStackTrace(s: PrintStream): Unit
Print the the trace of methods from where the error originated. This will trace all nested exception objects, as well as this object.
| Parameters | |
|---|---|
s | 
            PrintStream: The stream where the dump will be sent to. | 
printStackTrace
open fun printStackTrace(s: PrintWriter): Unit
Print the the trace of methods from where the error originated. This will trace all nested exception objects, as well as this object.
| Parameters | |
|---|---|
s | 
            PrintWriter: The writer where the dump will be sent to. |