Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AssertionFailedError.cs « NUnitCore « src « nunit « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ba1a8fec1b66ab4ced7bc3933e57392d2a9a12a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace NUnit.Framework {

  using System;
  
  /// <summary cref="System.Exception">Thrown when an assertion failed.</summary>
  public class AssertionFailedError: Exception {
	  /// <summary>
	  /// 
	  /// </summary>
	  /// <param name="message"></param>
    public AssertionFailedError (string message) : base(message) {}
  }
}