| java.lang.Object com.mockrunner.struts.DefaultExceptionHandlerConfig
DefaultExceptionHandlerConfig | public class DefaultExceptionHandlerConfig implements ExceptionHandlerConfig(Code) | | The default implementation of
ExceptionHandlerConfig . It uses the Struts
exception handling mechanism. Use the various constructors to provide your subclass
of ExceptionHandler or to configure exception handling using an
instance of ExceptionConfig . The ExceptionConfig class
allows you to set the handler class an exception type.
Use
ActionTestModule.addExceptionHandler to register an exception handler.
|
DefaultExceptionHandlerConfig | public DefaultExceptionHandlerConfig(ExceptionConfig exceptionConfig)(Code) | | |
DefaultExceptionHandlerConfig | public DefaultExceptionHandlerConfig(ExceptionHandler exceptionHandler, ExceptionConfig exceptionConfig)(Code) | | |
DefaultExceptionHandlerConfig | public DefaultExceptionHandlerConfig(ExceptionHandler exceptionHandler, Class exceptionClass)(Code) | | |
DefaultExceptionHandlerConfig | public DefaultExceptionHandlerConfig(Class exceptionClass)(Code) | | |
getExceptionConfig | public ExceptionConfig getExceptionConfig()(Code) | | Get the underlying ExceptionConfig . If you did not provide
an instance of ExceptionConfig , this class will create one
internally.
the ExceptionConfig |
getExceptionHandler | public ExceptionHandler getExceptionHandler()(Code) | | Get the underlying ExceptionHandler .
the ExceptionHandler |
|
|