2
// Copyright (C) 2002. James W. Newkirk, Michael C. Two, Alexei A. Vorontsov. All Rights Reserved.
7
using System.Runtime.Serialization;
10
public class InvalidSuiteException : ApplicationException
12
public InvalidSuiteException () : base()
16
/// Standard constructor
18
/// <param name="message">The error message that explains
19
/// the reason for the exception</param>
20
public InvalidSuiteException(string message) : base (message)
24
/// Standard constructor
26
/// <param name="message">The error message that explains
27
/// the reason for the exception</param>
28
/// <param name="inner">The exception that caused the
29
/// current exception</param>
30
public InvalidSuiteException(string message, Exception inner) :
35
/// Serialization Constructor
37
protected InvalidSuiteException(SerializationInfo info,
38
StreamingContext context) : base(info,context){}
b'\\ No newline at end of file'