Rev | Line | |
---|
[5958] | 1 | using System;
|
---|
| 2 | using System.Runtime.Serialization;
|
---|
| 3 |
|
---|
| 4 | namespace HeuristicLab.HiveEngine {
|
---|
| 5 | [Serializable]
|
---|
| 6 | public class ScopeMergeException : Exception {
|
---|
| 7 | public ScopeMergeException() : base() { }
|
---|
| 8 | public ScopeMergeException(string msg) : base(msg) { }
|
---|
| 9 | public ScopeMergeException(string msg, Exception e) : base(msg, e) { }
|
---|
| 10 | protected ScopeMergeException(SerializationInfo info, StreamingContext context) : base(info, context) { }
|
---|
| 11 |
|
---|
| 12 | }
|
---|
| 13 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.