~nunit-core/nunitv2/2.5

« back to all changes in this revision

Viewing changes to src/NUnitFramework/core/InvalidTestFixtureException.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
        /// <summary>
 
10
        /// Summary description for NoTestMethodsException.
 
11
        /// </summary>
 
12
        /// 
 
13
        [Serializable]
 
14
        public class InvalidTestFixtureException : ApplicationException
 
15
        {
 
16
                public InvalidTestFixtureException() : base() {}
 
17
 
 
18
                public InvalidTestFixtureException(string message) : base(message)
 
19
                {}
 
20
 
 
21
                public InvalidTestFixtureException(string message, Exception inner) : base(message, inner)
 
22
                {}
 
23
 
 
24
                /// <summary>
 
25
                /// Serialization Constructor
 
26
                /// </summary>
 
27
                protected InvalidTestFixtureException(SerializationInfo info, 
 
28
                        StreamingContext context) : base(info,context){}
 
29
 
 
30
        }
 
31
}
 
 
b'\\ No newline at end of file'