Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Client.ExecutionEngine/3.2/InvalidStateException.cs @ 1530

Last change on this file since 1530 was 1530, checked in by gkronber, 15 years ago

Moved source files of plugins Hive ... Visualization.Test into version-specific sub-folders. #576

File size: 977 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace HeuristicLab.Hive.Client.ExecutionEngine {
7  [global::System.Serializable]
8  public class InvalidStateException : Exception {
9    //
10    // For guidelines regarding the creation of new exception types, see
11    //    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/cpconerrorraisinghandlingguidelines.asp
12    // and
13    //    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dncscol/html/csharp07192001.asp
14    //
15
16    public InvalidStateException() { }
17    public InvalidStateException(string message) : base(message) { }
18    public InvalidStateException(string message, Exception inner) : base(message, inner) { }
19    protected InvalidStateException(
20    System.Runtime.Serialization.SerializationInfo info,
21    System.Runtime.Serialization.StreamingContext context)
22      : base(info, context) { }
23  }
24}
Note: See TracBrowser for help on using the repository browser.