[gitattributes] Do CRLF normalization on sln/proj files
[mono-project.git] / mcs / nunit24 / NUnitCore / core / NoTestFixturesException.cs
blobc8943693f5281bd3887ebebb2310ee0b3deacbde
1 // ****************************************************************
2 // This is free software licensed under the NUnit license. You
3 // may obtain a copy of the license as well as information regarding
4 // copyright ownership at http://nunit.org/?p=license&r=2.4.
5 // ****************************************************************
7 namespace NUnit.Core
9 using System;
10 using System.Runtime.Serialization;
12 /// <summary>
13 /// Summary description for NoTestFixtureException.
14 /// </summary>
15 [Serializable]
16 public class NoTestFixturesException : ApplicationException
18 public NoTestFixturesException() : base () {}
20 public NoTestFixturesException(string message) : base(message)
23 public NoTestFixturesException(string message, Exception inner) : base(message, inner) {}
25 protected NoTestFixturesException(SerializationInfo info, StreamingContext context) : base(info, context)