Package org.apache.tapestry5.runtime
Class ComponentEventException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.tapestry5.commons.internal.util.TapestryException
-
- org.apache.tapestry5.runtime.ComponentEventException
-
- All Implemented Interfaces:
java.io.Serializable
,Locatable
public class ComponentEventException extends TapestryException
A wrapper exception around any exception thrown when invoking a component event handler. In some cases, the underlying exception may have been a declared exception, and will be wrapped in a RuntimeException.
-
-
Constructor Summary
Constructors Constructor Description ComponentEventException(java.lang.String message, java.lang.String eventType, EventContext context, java.lang.Object location, java.lang.Throwable cause)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EventContext
getContext()
java.lang.String
getEventType()
-
Methods inherited from class org.apache.tapestry5.commons.internal.util.TapestryException
getLocation, toString
-
-
-
-
Constructor Detail
-
ComponentEventException
public ComponentEventException(java.lang.String message, java.lang.String eventType, EventContext context, java.lang.Object location, java.lang.Throwable cause)
- Parameters:
message
- exception messageeventType
- type of event that triggered the exceptioncontext
- context passed with the failed eventlocation
- location of the component while failed (may be null)cause
- underlying exception
-
-
Method Detail
-
getEventType
public java.lang.String getEventType()
-
getContext
public EventContext getContext()
-
-