Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine/3.3/Exceptions/HiveEngineException.cs @ 6744

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

#1233

  • initial port of HiveEngine
File size: 295 bytes
Line 
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.