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