Constructors

Link copied to clipboard
constructor()
Constructs a new exception with null as its detail message.
constructor(message: String)
Constructs a new exception with the specified detail message.
constructor(message: String, cause: Throwable)
Constructs a new exception with the specified detail message and cause.
constructor(cause: Throwable)
Constructs a new exception with the specified cause and a detail message of (cause==null ?

Functions

Link copied to clipboard
fun addSuppressed(exception: Throwable)
Link copied to clipboard
Link copied to clipboard
open fun getCause(): Throwable
Link copied to clipboard
Link copied to clipboard
open fun getMessage(): String
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open fun initCause(cause: Throwable): Throwable
Link copied to clipboard
open fun printStackTrace()
Link copied to clipboard
open fun setStackTrace(stackTrace: Array<StackTraceElement>)
Link copied to clipboard
@NotNull
open fun toString(): @NotNull String