[gitattributes] Do CRLF normalization on sln/proj files
[mono-project.git] / mcs / nunit24 / NUnitCore / core / InvalidSuiteException.cs
blob0b91b2f626abd19719fab0525121a680bb1a9e23
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 [Serializable]
13 public class InvalidSuiteException : ApplicationException
15 public InvalidSuiteException () : base()
16 {}
18 /// <summary>
19 /// Standard constructor
20 /// </summary>
21 /// <param name="message">The error message that explains
22 /// the reason for the exception</param>
23 public InvalidSuiteException(string message) : base (message)
26 /// <summary>
27 /// Standard constructor
28 /// </summary>
29 /// <param name="message">The error message that explains
30 /// the reason for the exception</param>
31 /// <param name="inner">The exception that caused the
32 /// current exception</param>
33 public InvalidSuiteException(string message, Exception inner) :
34 base(message, inner)
37 /// <summary>
38 /// Serialization Constructor
39 /// </summary>
40 protected InvalidSuiteException(SerializationInfo info,
41 StreamingContext context) : base(info,context){}