interface Runtime.ExceptionDetails
Detailed information about exception (or error) that was thrown during script compilation or execution.
Properties Jump to heading
Jump to headingexceptionId: number
Exception id.
Jump to headingtext: string
Exception text, which should be used together with exception object when available.
Jump to headinglineNumber: number
Line number of the exception location (0-based).
Jump to headingcolumnNumber: number
Column number of the exception location (0-based).
optional
Jump to headingscriptId: ScriptId | undefined
Script ID of the exception location.
optional
Jump to headingurl: string | undefined
URL of the exception location, to be used when the script was not reported.
optional
Jump to headingstackTrace: StackTrace | undefined
JavaScript stack trace if available.
optional
Jump to headingexception: RemoteObject | undefined
Exception object if available.
optional
Jump to headingexecutionContextId: ExecutionContextId | undefined
Identifier of the context where exception happened.