ExceptionData

@Serializable
data class ExceptionData(val message: String, val stacktrace: List<String>, val cause: ExceptionData? = null)

Constructors

Link copied to clipboard
constructor(exception: Throwable)
constructor(message: String, stacktrace: List<String>, cause: ExceptionData? = null)

Properties

Link copied to clipboard
val cause: ExceptionData? = null
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
Link copied to clipboard
open override fun toString(): String