Interface ExceptionInfo
-
- All Known Implementing Classes:
ExceptionInfoImpl
public interface ExceptionInfo
Contains information about an analyzed exception.- See Also:
ExceptionAnalysis
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description getClassName()
The exception class name.getMessage()
The message associated with the exception, possibly null.name)
Returns a specific property of the exception by name.<>
getPropertyNames()
Returns the names of the properties of the exception, sorted alphabetically.<>
getStackTrace()
Returns the stack trace elements.
-
-
-
Method Detail
-
getClassName
getClassName()
The exception class name.
-
getMessage
getMessage()
The message associated with the exception, possibly null.
-
getPropertyNames
<> getPropertyNames()
Returns the names of the properties of the exception, sorted alphabetically.
-
getProperty
name)
Returns a specific property of the exception by name.
-
getStackTrace
<> getStackTrace()
Returns the stack trace elements. Generally this is an empty list except for the deepest exception.
-
-