getFullStackTrace() |
java.lang.String getFullStackTrace(): Deprecated. Use
Throwable.getStackTrace() instead.
Return full stack trace. Full stack trace will include all nested exception
messages and the full stack trace for the root exception.
|
VARIABLES |
TYPE |
VARIABLES DESCRIPTION |
return |
Output |
returns java.lang.String: full stack trace
representation.
|
|
getNestedException() |
java.lang.Throwable getNestedException(): Deprecated.
Use Throwable.getCause() instead.
Return nested exception that is wrapped within this exception.
|
VARIABLES |
TYPE |
VARIABLES DESCRIPTION |
return |
Output |
returns java.lang.Throwable: nested exception if any.
|
|