Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aspects/Exceptions
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv28963
Modified Files:
LogExceptionHandler.cs
Log Message:
SPRNET-880 - Logging exception handler should continue processing of exception handler chain.
Index: LogExceptionHandler.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aspects/Exceptions/LogExceptionHandler.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** LogExceptionHandler.cs 10 Oct 2007 18:07:46 -0000 1.5
--- LogExceptionHandler.cs 26 Feb 2008 00:03:24 -0000 1.6
***************
*** 41,44 ****
--- 41,45 ----
public LogExceptionHandler()
{
+ ContinueProcessing = true;
}
***************
*** 49,52 ****
--- 50,54 ----
public LogExceptionHandler(string[] exceptionNames) : base(exceptionNames)
{
+ ContinueProcessing = true;
}
***************
*** 63,66 ****
--- 65,69 ----
}
+
/// <summary>
/// Handles the exception.
|