~nunit-core/nunitv2/2.5

« back to all changes in this revision

Viewing changes to src/NUnitFramework/core/NoTestFixturesException.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 NoTestFixtureException.
 
11
        /// </summary>
 
12
        [Serializable]
 
13
        public class NoTestFixturesException : ApplicationException
 
14
        {
 
15
                public NoTestFixturesException() : base () {}
 
16
 
 
17
                public NoTestFixturesException(string message) : base(message)
 
18
                {}
 
19
 
 
20
                public NoTestFixturesException(string message, Exception inner) : base(message, inner) {}
 
21
 
 
22
                protected NoTestFixturesException(SerializationInfo info, StreamingContext context) : base(info, context)
 
23
                {}
 
24
        }
 
25
}