~nunit-core/nunitv2/2.5

« back to all changes in this revision

Viewing changes to src/NUnitFramework/core/NunitException.cs

  • Committer: jnewkirk
  • Date: 2002-07-10 20:00:13 UTC
  • Revision ID: vcs-imports@canonical.com-20020710200013-j8us5mbi0usp7p02
initialĀ load

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// Copyright (C) 2002. James W. Newkirk, Michael C. Two, Alexei A. Vorontsov. All Rights Reserved.
 
3
//
 
4
namespace Nunit.Core 
 
5
{
 
6
        using System;
 
7
        using System.Runtime.Serialization;
 
8
        using Nunit.Framework;
 
9
  
 
10
        /// <summary>
 
11
        /// Thrown when an assertion failed. Here to preserve the inner
 
12
        /// exception and hence its stack trace.
 
13
        /// </summary>
 
14
        /// 
 
15
        [Serializable]
 
16
        public class NunitException : ApplicationException 
 
17
        {
 
18
                public NunitException () : base() 
 
19
                {} 
 
20
 
 
21
                /// <summary>
 
22
                /// Standard constructor
 
23
                /// </summary>
 
24
                /// <param name="message">The error message that explains 
 
25
                /// the reason for the exception</param>
 
26
                public NunitException(string message) : base (message)
 
27
                {}
 
28
 
 
29
                /// <summary>
 
30
                /// Standard constructor
 
31
                /// </summary>
 
32
                /// <param name="message">The error message that explains 
 
33
                /// the reason for the exception</param>
 
34
                /// <param name="inner">The exception that caused the 
 
35
                /// current exception</param>
 
36
                public NunitException(string message, Exception inner) :
 
37
                        base(message, inner) 
 
38
                {}
 
39
 
 
40
                /// <summary>
 
41
                /// Serialization Constructor
 
42
                /// </summary>
 
43
                protected NunitException(SerializationInfo info, 
 
44
                        StreamingContext context) : base(info,context){}
 
45
 
 
46
 
 
47
        }
 
48
}