blob: e638ce5a2d8da5ccb6f2ab171bb30168f772c1eb [file] [log] [blame]
using System;
namespace Agility.Core
{
/// <summary>
/// A filter that handles the exception (somehow).
/// </summary>
public class TestFilterHandler : TestFilterCommand
{
public override bool PostProcess(IContext context, Exception exception)
{
context[FILTER_KEY] = exception;
return true; // == OK, I handled it!
}
}
}