using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace HeuristicLab.Hive.Client.ExecutionEngine { [global::System.Serializable] public class InvalidStateException : Exception { // // For guidelines regarding the creation of new exception types, see // http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/cpconerrorraisinghandlingguidelines.asp // and // http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dncscol/html/csharp07192001.asp // public InvalidStateException() { } public InvalidStateException(string message) : base(message) { } public InvalidStateException(string message, Exception inner) : base(message, inner) { } protected InvalidStateException( System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } } }