/// <summary>
        /// Creates the swallow exception hander.
        /// </summary>
        /// <param name="parsedAdviceExpression">The parsed advice expression.</param>
        /// <returns></returns>
        protected virtual IExceptionHandler CreateSwallowExceptionHander(ParsedAdviceExpression parsedAdviceExpression)
        {
            IExceptionHandler handler;

            handler = new SwallowExceptionHandler(parsedAdviceExpression.ExceptionNames);
            return(handler);
        }
 /// <summary>
 /// Creates the swallow exception hander.
 /// </summary>
 /// <param name="parsedAdviceExpression">The parsed advice expression.</param>
 /// <returns></returns>
 protected virtual IExceptionHandler CreateSwallowExceptionHander(ParsedAdviceExpression parsedAdviceExpression)
 {
     IExceptionHandler handler;
     handler = new SwallowExceptionHandler(parsedAdviceExpression.ExceptionNames);
     return handler;
 }