StackFrame

@Serializable
data class StackFrame(val location: Location? = null, val module: String? = null, val parameters: List<String>? = null, val properties: PropertyBag? = null, val threadID: Long? = null)

A function call within a stack trace.

Constructors

Link copied to clipboard
constructor(location: Location? = null, module: String? = null, parameters: List<String>? = null, properties: PropertyBag? = null, threadID: Long? = null)

Properties

Link copied to clipboard
val location: Location? = null

The location to which this stack frame refers.

Link copied to clipboard
val module: String? = null

The name of the module that contains the code of this stack frame.

Link copied to clipboard
val parameters: List<String>? = null

The parameters of the call that is executing.

Link copied to clipboard
val properties: PropertyBag? = null

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

Link copied to clipboard
val threadID: Long? = null

The thread identifier of the stack frame.