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)(source)

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.

Since

0.12.0

Constructors

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

Properties

Link copied to clipboard

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.