public class ExceptionDetails
extends java.lang.Object
Constructor and Description |
---|
ExceptionDetails() |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getEvaluateName()
Optional expression that can be evaluated in the current scope to obtain the exception object.
|
java.lang.String |
getFullTypeName()
Fully-qualified type name of the exception object.
|
ExceptionDetails[] |
getInnerException()
Details of the exception contained by this exception, if any.
|
java.lang.String |
getMessage()
Message contained in the exception.
|
java.lang.String |
getStackTrace()
Stack trace at the time the exception was thrown.
|
java.lang.String |
getTypeName()
Short type name of the exception object.
|
int |
hashCode() |
void |
setEvaluateName(java.lang.String evaluateName)
Optional expression that can be evaluated in the current scope to obtain the exception object.
|
void |
setFullTypeName(java.lang.String fullTypeName)
Fully-qualified type name of the exception object.
|
void |
setInnerException(ExceptionDetails[] innerException)
Details of the exception contained by this exception, if any.
|
void |
setMessage(java.lang.String message)
Message contained in the exception.
|
void |
setStackTrace(java.lang.String stackTrace)
Stack trace at the time the exception was thrown.
|
void |
setTypeName(java.lang.String typeName)
Short type name of the exception object.
|
java.lang.String |
toString() |
@Pure public java.lang.String getMessage()
This is an optional property.
public void setMessage(java.lang.String message)
This is an optional property.
@Pure public java.lang.String getTypeName()
This is an optional property.
public void setTypeName(java.lang.String typeName)
This is an optional property.
@Pure public java.lang.String getFullTypeName()
This is an optional property.
public void setFullTypeName(java.lang.String fullTypeName)
This is an optional property.
@Pure public java.lang.String getEvaluateName()
This is an optional property.
public void setEvaluateName(java.lang.String evaluateName)
This is an optional property.
@Pure public java.lang.String getStackTrace()
This is an optional property.
public void setStackTrace(java.lang.String stackTrace)
This is an optional property.
@Pure public ExceptionDetails[] getInnerException()
This is an optional property.
public void setInnerException(ExceptionDetails[] innerException)
This is an optional property.
@Pure public java.lang.String toString()
toString
in class java.lang.Object
@Pure public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
@Pure public int hashCode()
hashCode
in class java.lang.Object