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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/nunit/src/NUnitCore/NUnitException.cs')
-rw-r--r--mcs/nunit/src/NUnitCore/NUnitException.cs51
1 files changed, 0 insertions, 51 deletions
diff --git a/mcs/nunit/src/NUnitCore/NUnitException.cs b/mcs/nunit/src/NUnitCore/NUnitException.cs
deleted file mode 100644
index f0273ef791f..00000000000
--- a/mcs/nunit/src/NUnitCore/NUnitException.cs
+++ /dev/null
@@ -1,51 +0,0 @@
-namespace NUnit.Framework
-{
- using System;
- using System.Diagnostics;
- using System.Runtime.Serialization;
-
- /// <summary>
- /// Thrown when an assertion failed. Here to preserve the inner
- /// exception and hence its stack trace.
- /// </summary>
- [Serializable]
- public class NUnitException : ApplicationException
- {
- /// <summary>
- /// Serialization Constructor
- /// </summary>
- protected NUnitException(SerializationInfo info,
- StreamingContext context) : base(info,context){}
- /// <summary>
- /// Standard constructor
- /// </summary>
- /// <param name="message">The error message that explains
- /// the reason for the exception</param>
- public NUnitException(string message) : base (message){}
- /// <summary>
- /// Standard constructor
- /// </summary>
- /// <param name="message">The error message that explains
- /// the reason for the exception</param>
- /// <param name="inner">The exception that caused the
- /// current exception</param>
- public NUnitException(string message, Exception inner) :
- base(message, inner) {}
-
- /// <summary>
- /// Indicates that this exception wraps an AssertionFailedError
- /// exception
- /// </summary>
- public virtual bool IsAssertionFailure
- {
- get
- {
- AssertionFailedError inner = this.InnerException
- as AssertionFailedError;
- if(inner != null)
- return true;
- return false;
- }
- }
- }
-} \ No newline at end of file