using System; namespace Wayne.ForecourtControl { /// /// The ForecourtControlException is the general exception that will be thrown /// from the implementations of ForecourtControllerInterface. /// [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2237:MarkISerializableTypesWithSerializable")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1032:ImplementStandardExceptionConstructors")] public sealed class ForecourtControlException : Exception { /// /// Initializes a new instance of the class /// public ForecourtControlException() { } /// /// Initializes a new instance of the class /// public ForecourtControlException(string message) : base(message) { } /// /// Initializes a new instance of the class /// public ForecourtControlException(string message, Exception inner) : base(message, inner) { } } }