Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.MetaOptimization/HeuristicLab.HiveEngine/3.3/Exceptions/HiveEngineException.cs @ 6984

Last change on this file since 6984 was 6984, checked in by ascheibe, 12 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: 295 bytes
RevLine 
[6984]1using System;
2
3namespace HeuristicLab.HiveEngine {
4  public class HiveEngineException : Exception {
5    public HiveEngineException(string message) : base(message) { }
6
7    public HiveEngineException(string message, Exception innerException) : base(message, innerException) { }
8  }
9}
Note: See TracBrowser for help on using the repository browser.