~nunit-core/nunitv2/2.5

« back to all changes in this revision

Viewing changes to src/NUnitFramework/core/InvalidSuiteException.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
 
 
9
        [Serializable]
 
10
        public class InvalidSuiteException : ApplicationException 
 
11
        {
 
12
                public InvalidSuiteException () : base() 
 
13
                {} 
 
14
 
 
15
                /// <summary>
 
16
                /// Standard constructor
 
17
                /// </summary>
 
18
                /// <param name="message">The error message that explains 
 
19
                /// the reason for the exception</param>
 
20
                public InvalidSuiteException(string message) : base (message)
 
21
                {}
 
22
 
 
23
                /// <summary>
 
24
                /// Standard constructor
 
25
                /// </summary>
 
26
                /// <param name="message">The error message that explains 
 
27
                /// the reason for the exception</param>
 
28
                /// <param name="inner">The exception that caused the 
 
29
                /// current exception</param>
 
30
                public InvalidSuiteException(string message, Exception inner) :
 
31
                        base(message, inner) 
 
32
                {}
 
33
 
 
34
                /// <summary>
 
35
                /// Serialization Constructor
 
36
                /// </summary>
 
37
                protected InvalidSuiteException(SerializationInfo info, 
 
38
                        StreamingContext context) : base(info,context){}
 
39
 
 
40
        }
 
41
}
 
 
b'\\ No newline at end of file'