EvaluateException

@Serializable
data class EvaluateException(val error: Runtime.ExceptionDetails, val jsError: String) : RuntimeException

Exception thrown when an error occurs while evaluating a JavaScript expression in the browser context.

Constructors

Link copied to clipboard
constructor(error: Runtime.ExceptionDetails)
constructor(error: Runtime.ExceptionDetails, jsError: String)

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard

Details of the exception that occurred during evaluation.

Link copied to clipboard

The JavaScript error message, if available.

Link copied to clipboard
open val message: String?