Stack

@JsonClass(generateAdapter = true)
data class Stack(    @Json(name = "frames") val frames: List<StackFrame>,     @Json(name = "message") val message: Message? = null,     @Json(name = "properties") val properties: PropertyBag? = null)

The sequence of function calls leading to the exception.

A call stack that is relevant to a result.

The call stack leading to this location.

Constructors

Link copied to clipboard
fun Stack(    @Json(name = "frames") frames: List<StackFrame>,     @Json(name = "message") message: Message? = null,     @Json(name = "properties") properties: PropertyBag? = null)

Properties

Link copied to clipboard
val frames: List<StackFrame>

An array of stack frames that represents a sequence of calls, rendered in reverse chronological order, that comprise the call stack.

Link copied to clipboard
val message: Message? = null

A message relevant to this call stack.

Link copied to clipboard
val properties: PropertyBag? = null

Key/value pairs that provide additional information about the stack.

Sources

Link copied to clipboard