Exception

@Serializable
data class Exception(val innerExceptions: List<Exception>? = null, val kind: String? = null, val message: String? = null, val properties: PropertyBag? = null, val stack: Stack? = null)

The runtime exception, if any, relevant to this notification.

Describes a runtime exception encountered during the execution of an analysis tool.

Constructors

Link copied to clipboard
constructor(innerExceptions: List<Exception>? = null, kind: String? = null, message: String? = null, properties: PropertyBag? = null, stack: Stack? = null)

Properties

Link copied to clipboard

An array of exception objects each of which is considered a cause of this exception.

Link copied to clipboard
val kind: String? = null

A string that identifies the kind of exception, for example, the fully qualified type name of an object that was thrown, or the symbolic name of a signal.

Link copied to clipboard
val message: String? = null

A message that describes the exception.

Link copied to clipboard
val properties: PropertyBag? = null

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

Link copied to clipboard
val stack: Stack? = null

The sequence of function calls leading to the exception.