Skip to main content

ExceptionDetails

interface Runtime.ExceptionDetails

Detailed information about exception (or error) that was thrown during script compilation or execution.

Properties Jump to heading

Exception id.

Exception text, which should be used together with exception object when available.

Line number of the exception location (0-based).

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.

JavaScript stack trace if available.

Exception object if available.

Identifier of the context where exception happened.

Back to top