ExceptionDetails

@native @JSType trait ExceptionDetails extends StObject

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

Companion
object
trait StObject
class Object
trait Any
class Object
trait Matchable
class Any

Value members

Inherited methods

def hasOwnProperty(v: String): Boolean
Inherited from
Object
def isPrototypeOf(v: Object): Boolean
Inherited from
Object
def propertyIsEnumerable(v: String): Boolean
Inherited from
Object
def toLocaleString(): String
Inherited from
Object
def valueOf(): Any
Inherited from
Object

Concrete fields

var columnNumber: Double

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

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

var exception: UndefOr[RemoteObject]

Exception object if available.

Exception object if available.

var exceptionId: Double

Exception id.

Exception id.

Identifier of the context where exception happened.

Identifier of the context where exception happened.

var lineNumber: Double

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

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

var scriptId: UndefOr[ScriptId]

Script ID of the exception location.

Script ID of the exception location.

var stackTrace: UndefOr[StackTrace]

JavaScript stack trace if available.

JavaScript stack trace if available.

var text: String

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

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

var url: UndefOr[String]

URL of the exception location, to be used when the script was not reported.

URL of the exception location, to be used when the script was not reported.