C# Class Castle.MonoRail.Framework.Extensions.ExceptionChaining.FilteredExceptionHandler

This class expects to be configured with exclude types that detail the types of exceptions to be ignored.
Inheritance: AbstractExceptionHandler, IConfigurableHandler
Show file Open project: nats/castle-1.0.3-mono

Public Methods

Method Description
Configure ( XmlNode exceptionHandlerNode ) : void

Implementors should check for known attributes and child nodes within the exceptionHandlerNode

Process ( IRailsEngineContext context ) : void

Implementors should perform the action on the exception. Note that the exception is available in IRailsEngineContext.LastException

Method Details

Configure() public method

Implementors should check for known attributes and child nodes within the exceptionHandlerNode
public Configure ( XmlNode exceptionHandlerNode ) : void
exceptionHandlerNode XmlNode The Xml node /// that represents this handler on the configuration file
return void

Process() public method

Implementors should perform the action on the exception. Note that the exception is available in IRailsEngineContext.LastException
public Process ( IRailsEngineContext context ) : void
context IRailsEngineContext
return void