Last change
on this file since 1536 was
1530,
checked in by gkronber, 16 years ago
|
Moved source files of plugins Hive ... Visualization.Test into version-specific sub-folders. #576
|
File size:
977 bytes
|
Rev | Line | |
---|
[1368] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 |
|
---|
| 6 | namespace 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.