Uses of Class
org.apache.struts.config.ExceptionConfig

Packages that use ExceptionConfig
org.apache.struts.action The action package is the core of the struts framework, providing the "Controller" aspect of a MVC model. 
org.apache.struts.config The "config" package contains configuration objects that correspond to elements that may be specified in the struts-config.xml module configuration file. 
org.apache.struts.config.impl   
 

Uses of ExceptionConfig in org.apache.struts.action
 

Subclasses of ExceptionConfig in org.apache.struts.action
 class ActionException
          Deprecated. Replaced by org.apache.struts.config.ExceptionConfig
 

Methods in org.apache.struts.action that return ExceptionConfig
 ExceptionConfig ActionMapping.findException(java.lang.Class type)
          Find and return the ExceptionConfig instance defining how exceptions of the specified type should be handled.
 

Methods in org.apache.struts.action with parameters of type ExceptionConfig
 ActionForward ExceptionHandler.execute(java.lang.Exception ex, ExceptionConfig ae, ActionMapping mapping, ActionForm formInstance, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Handle the exception.
 

Uses of ExceptionConfig in org.apache.struts.config
 

Methods in org.apache.struts.config that return ExceptionConfig
 ExceptionConfig ModuleConfig.findExceptionConfig(java.lang.String type)
          Return the exception configuration for the specified type, if any; otherwise return null.
 ExceptionConfig[] ModuleConfig.findExceptionConfigs()
          Return the exception configurations for this module.
 ExceptionConfig ActionConfig.findExceptionConfig(java.lang.String type)
          Return the exception configuration for the specified type, if any; otherwise return null.
 ExceptionConfig[] ActionConfig.findExceptionConfigs()
          Return the exception configurations for this action.
 

Methods in org.apache.struts.config with parameters of type ExceptionConfig
 void ModuleConfig.addExceptionConfig(ExceptionConfig config)
          Add a new ExceptionConfig instance to the set associated with this module.
 void ModuleConfig.removeExceptionConfig(ExceptionConfig config)
          Remove the specified exception configuration instance.
 void ActionConfig.addExceptionConfig(ExceptionConfig config)
          Add a new ExceptionConfig instance to the set associated with this action.
 void ActionConfig.removeExceptionConfig(ExceptionConfig config)
          Remove the specified exception configuration instance.
 

Uses of ExceptionConfig in org.apache.struts.config.impl
 

Methods in org.apache.struts.config.impl that return ExceptionConfig
 ExceptionConfig ModuleConfigImpl.findExceptionConfig(java.lang.String type)
          Return the exception configuration for the specified type, if any; otherwise return null.
 ExceptionConfig[] ModuleConfigImpl.findExceptionConfigs()
          Return the exception configurations for this module.
 

Methods in org.apache.struts.config.impl with parameters of type ExceptionConfig
 void ModuleConfigImpl.addExceptionConfig(ExceptionConfig config)
          Add a new ExceptionConfig instance to the set associated with this module.
 void ModuleConfigImpl.removeExceptionConfig(ExceptionConfig config)
          Remove the specified exception configuration instance.
 



Copyright © 2000-2003 - Apache Software Foundation