Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine/3.4/Exceptions/ScopeMergeException.cs @ 5958

Last change on this file since 5958 was 5958, checked in by cneumuel, 14 years ago

#1233

  • initial port of HiveEngine
File size: 466 bytes
Line 
1using System;
2using System.Runtime.Serialization;
3
4namespace 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.