SealdException
class SealdException(originalException: Throwable) : RuntimeException
SealdException represents an error that happened during a Seald operation.
Constructors
SealdException | constructor(originalException: Throwable) |
Properties
Name | Summary |
---|---|
cause | open val cause: Throwable? |
code | val code: String The error code, which is a machine-readable string that represents this error. |
description | val description: String? A human-readable description of the error. |
details | val details: String? Details about the error. |
id | val id: String The error ID, which is a unique string for the precise place this error was thrown from. |
message | open override val message: String |
nativeStack | val nativeStack: String? The call stack in Seald native code. |
raw | val raw: String? The raw underlying error. |
status | val status: Int? If the error is returned by the Seald server, the HTTP status code. |
Functions
Name | Summary |
---|---|
addSuppressed | fun addSuppressed(p0: Throwable) |
fillInStackTrace | open fun fillInStackTrace(): Throwable |
getLocalizedMessage | open fun getLocalizedMessage(): String |
getStackTrace | open fun getStackTrace(): Array<StackTraceElement> |
getSuppressed | fun getSuppressed(): Array<Throwable> |
initCause | open fun initCause(p0: Throwable): Throwable |
printStackTrace | open fun printStackTrace() open fun printStackTrace(p0: PrintStream) open fun printStackTrace(p0: PrintWriter) |
setStackTrace | open fun setStackTrace(p0: Array<StackTraceElement>) |
toString | open override fun toString(): String |