Added in API level 8

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 with no specified detail message and cause.

Create a new DatatypeConfigurationException with the specified detail message.

Create a new DatatypeConfigurationException with the specified detail message and cause.

Create a new DatatypeConfigurationException with the specified cause.

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

Added in API level 8
DatatypeConfigurationException()

Create a new DatatypeConfigurationException with no specified detail message and cause.

DatatypeConfigurationException

Added in API level 8
DatatypeConfigurationException(message: String!)

Create a new DatatypeConfigurationException with the specified detail message.

Parameters
message String!: The detail message.

DatatypeConfigurationException

Added in API level 8
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

Added in API level 8
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

Added in API level 8
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

Added in API level 8
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

Added in API level 8
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.