Class ExceptionInfoImpl
java.lang.Object
org.apache.tapestry5.ioc.internal.services.ExceptionInfoImpl
- All Implemented Interfaces:
ExceptionInfo
-
Constructor Summary
ConstructorsConstructorDescriptionExceptionInfoImpl
(Throwable t, Map<String, Object> properties, List<StackTraceElement> stackTrace) -
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.
-
Constructor Details
-
ExceptionInfoImpl
public ExceptionInfoImpl(Throwable t, Map<String, Object> properties, List<StackTraceElement> stackTrace)
-
-
Method Details
-
getClassName
Description copied from interface:ExceptionInfo
The exception class name.- Specified by:
getClassName
in interfaceExceptionInfo
-
getMessage
Description copied from interface:ExceptionInfo
The message associated with the exception, possibly null.- Specified by:
getMessage
in interfaceExceptionInfo
-
getProperty
Description copied from interface:ExceptionInfo
Returns a specific property of the exception by name.- Specified by:
getProperty
in interfaceExceptionInfo
-
getPropertyNames
Description copied from interface:ExceptionInfo
Returns the names of the properties of the exception, sorted alphabetically.- Specified by:
getPropertyNames
in interfaceExceptionInfo
-
getStackTrace
Description copied from interface:ExceptionInfo
Returns the stack trace elements. Generally this is an empty list except for the deepest exception.- Specified by:
getStackTrace
in interfaceExceptionInfo
-