/src/NUnit/core/InvalidTestFixtureException.cs
C# | 34 lines | 16 code | 6 blank | 12 comment | 0 complexity | 834d73a0e84a4454a157a678edbcb2f0 MD5 | raw file
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. 5// **************************************************************** 6 7namespace NUnit.Core 8{ 9 using System; 10 using System.Runtime.Serialization; 11 12 /// <summary> 13 /// Summary description for NoTestMethodsException. 14 /// </summary> 15 /// 16 [Serializable] 17 public class InvalidTestFixtureException : ApplicationException 18 { 19 public InvalidTestFixtureException() : base() {} 20 21 public InvalidTestFixtureException(string message) : base(message) 22 {} 23 24 public InvalidTestFixtureException(string message, Exception inner) : base(message, inner) 25 {} 26 27 /// <summary> 28 /// Serialization Constructor 29 /// </summary> 30 protected InvalidTestFixtureException(SerializationInfo info, 31 StreamingContext context) : base(info,context){} 32 33 } 34}