namespace NUnit.Framework { using System; /// Thrown when an assertion failed. public class AssertionFailedError: Exception { /// /// /// /// public AssertionFailedError (string message) : base(message) {} } }