Last change
on this file since 6984 was
6984,
checked in by ascheibe, 11 years ago
|
#1233 #1215
- The Hive Engine probably won't make it into 3.3.6 so i moved it to the MetaOpt branch because the Hive-3.4 branch should not be used anymore. The Hive Engine will then be released together with MetaOpt.
- Updated MetaOpt to compile to new trunk binary directory and reference assemblies in this folder.
|
File size:
466 bytes
|
Line | |
---|
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.