Package Torello.Browser
Class RunTime.ExceptionDetails
- java.lang.Object
-
- Torello.Java.JSON.BaseType
-
- Torello.Browser.RunTime.ExceptionDetails
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- RunTime
public static class RunTime.ExceptionDetails extends BaseType implements java.io.Serializable
Detailed information about exception (or error) that was thrown during script compilation or execution.- See Also:
- Serialized Form
Hi-Lited Source-Code:- View Here: Torello/Browser/RunTime.java
- Open New Browser-Tab: Torello/Browser/RunTime.java
File Size: 7,440 Bytes Line Count: 183 '\n' Characters Found
-
-
Field Summary
Serializable ID Modifier and Type Field protected static long
serialVersionUID
For Object Serialization.Type Properties Modifier and Type Field int
columnNumber
Column number of the exception location (0-based).RunTime.RemoteObject
exception
Exception object if available.int
exceptionId
Exception id.JsonObject
exceptionMetaData
Dictionary with entries of meta data that the client associated with this exception, such as information about associated network requests, etc.Integer
executionContextId
Identifier of the context where exception happened.int
lineNumber
Line number of the exception location (0-based).String
scriptId
Script ID of the exception location.RunTime.StackTrace
stackTrace
JavaScript stack trace if available.String
text
Exception text, which should be used together with exception object when available.String
url
URL of the exception location, to be used when the script was not reported.
-
Constructor Summary
Constructors Constructor Description ExceptionDetails(int exceptionId, String text, int lineNumber, int columnNumber, String scriptId, String url, RunTime.StackTrace stackTrace, RunTime.RemoteObject exception, Integer executionContextId, JsonObject exceptionMetaData)
ConstructorExceptionDetails(JsonObject jo)
JSON Object Constructor
-
Method Summary
Generate Array that Indicates which Parameter are Optional Modifier and Type Method boolean[]
optionals()
Implementing this method allows sub-classes to specify which JSON Properties may be absent or null.Methods: class java.lang.Object Modifier and Type Method boolean
equals(Object other)
Checks whether'this'
equals an input Java-Object
int
hashCode()
Generates a Hash-Code for'this'
instance
-
-
-
Field Detail
-
serialVersionUID
protected static final long serialVersionUID
For Object Serialization. java.io.Serializable- See Also:
- Constant Field Values
-
exceptionId
public final int exceptionId
Exception id.
-
text
public final java.lang.String text
Exception text, which should be used together with exception object when available.
-
lineNumber
public final int lineNumber
Line number of the exception location (0-based).
-
columnNumber
public final int columnNumber
Column number of the exception location (0-based).
-
scriptId
public final java.lang.String scriptId
Script ID of the exception location.
OPTIONAL
-
url
public final java.lang.String url
URL of the exception location, to be used when the script was not reported.
OPTIONAL
-
stackTrace
public final RunTime.StackTrace stackTrace
JavaScript stack trace if available.
OPTIONAL
-
exception
public final RunTime.RemoteObject exception
Exception object if available.
OPTIONAL
-
executionContextId
public final java.lang.Integer executionContextId
Identifier of the context where exception happened.
OPTIONAL
-
exceptionMetaData
public final JsonObject exceptionMetaData
Dictionary with entries of meta data that the client associated with this exception, such as information about associated network requests, etc.
OPTIONAL
EXPERIMENTAL
-
-
Constructor Detail
-
ExceptionDetails
public ExceptionDetails(int exceptionId, java.lang.String text, int lineNumber, int columnNumber, java.lang.String scriptId, java.lang.String url, RunTime.StackTrace stackTrace, RunTime.RemoteObject exception, java.lang.Integer executionContextId, JsonObject exceptionMetaData)
Constructor- Parameters:
exceptionId
- Exception id.text
- Exception text, which should be used together with exception object when available.lineNumber
- Line number of the exception location (0-based).columnNumber
- Column number of the exception location (0-based).scriptId
- Script ID of the exception location.
OPTIONALurl
- URL of the exception location, to be used when the script was not reported.
OPTIONALstackTrace
- JavaScript stack trace if available.
OPTIONALexception
- Exception object if available.
OPTIONALexecutionContextId
- Identifier of the context where exception happened.
OPTIONALexceptionMetaData
- Dictionary with entries of meta data that the client associated with this exception, such as information about associated network requests, etc.
OPTIONAL
EXPERIMENTAL
-
ExceptionDetails
public ExceptionDetails(JsonObject jo)
JSON Object Constructor- Parameters:
jo
- A Json-Object having data about an instance of'ExceptionDetails'
.
-
-
Method Detail
-
optionals
public boolean[] optionals()
Description copied from class:BaseType
Implementing this method allows sub-classes to specify which JSON Properties may be absent or null. When binding aJsonObject
to a Java-Object, if some of the expected fields for the Java-Object map to Properties which might be left-out or omitted, then that may be indicated by setting that fields array positionTRUE
.
NOTE: This array should have a length equal to the number of fields contained by the Java Object. The first boolean in the array should specify whether the first Object Field may by absent. The second boolean should specify whether the second Object Field is optional in the JSON - and so on and so forth...
-
equals
public boolean equals(java.lang.Object other)
Checks whether'this'
equals an input Java-Object
- Overrides:
equals
in classjava.lang.Object
- Code:
- Exact Method Body:
if (other == null) return false; if (other.getClass() != this.getClass()) return false; ExceptionDetails o = (ExceptionDetails) other; return (this.exceptionId == o.exceptionId) && Objects.equals(this.text, o.text) && (this.lineNumber == o.lineNumber) && (this.columnNumber == o.columnNumber) && Objects.equals(this.scriptId, o.scriptId) && Objects.equals(this.url, o.url) && Objects.equals(this.stackTrace, o.stackTrace) && Objects.equals(this.exception, o.exception) && Objects.equals(this.executionContextId, o.executionContextId) && Objects.equals(this.exceptionMetaData, o.exceptionMetaData);
-
hashCode
public int hashCode()
Generates a Hash-Code for'this'
instance- Overrides:
hashCode
in classjava.lang.Object
- Code:
- Exact Method Body:
return this.exceptionId + Objects.hashCode(this.text) + this.lineNumber + this.columnNumber + Objects.hashCode(this.scriptId) + Objects.hashCode(this.url) + this.stackTrace.hashCode() + this.exception.hashCode() + Objects.hashCode(this.executionContextId) + Objects.hashCode(this.exceptionMetaData);
-
-