public ExceptionMatchExpression Matching(Func <Exception, bool> filter, string description)
        {
            var match = new ExceptionMatch(filter, description);

            _registration(match);

            return(this);
        }
 public void SetUp()
 {
     theExpression = new ExceptionMatchExpression(m => theMatch = m.As<ExceptionMatch>());
 }