public class ExceptionDetails extends JSONBase
| Modifier and Type | Method and Description |
|---|---|
static ExceptionDetails |
create() |
boolean |
equals(Object obj) |
String |
getEvaluateName()
Optional expression that can be evaluated in the current scope to obtain the exception
object.
|
String |
getFullTypeName()
Fully-qualified type name of the exception object.
|
List<ExceptionDetails> |
getInnerException()
Details of the exception contained by this exception, if any.
|
String |
getMessage()
Message contained in the exception.
|
String |
getStackTrace()
Stack trace at the time the exception was thrown.
|
String |
getTypeName()
Short type name of the exception object.
|
int |
hashCode() |
ExceptionDetails |
setEvaluateName(String evaluateName) |
ExceptionDetails |
setFullTypeName(String fullTypeName) |
ExceptionDetails |
setInnerException(List<ExceptionDetails> innerException) |
ExceptionDetails |
setMessage(String message) |
ExceptionDetails |
setStackTrace(String stackTrace) |
ExceptionDetails |
setTypeName(String typeName) |
public String getMessage()
public ExceptionDetails setMessage(String message)
public String getTypeName()
public ExceptionDetails setTypeName(String typeName)
public String getFullTypeName()
public ExceptionDetails setFullTypeName(String fullTypeName)
public String getEvaluateName()
public ExceptionDetails setEvaluateName(String evaluateName)
public String getStackTrace()
public ExceptionDetails setStackTrace(String stackTrace)
public List<ExceptionDetails> getInnerException()
public ExceptionDetails setInnerException(List<ExceptionDetails> innerException)
public static ExceptionDetails create()