source:
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine/3.4/Exceptions/HiveEngineException.cs
@
6419
Last change on this file since 6419 was 5958, checked in by cneumuel, 14 years ago | |
---|---|
File size: 295 bytes |
Rev | Line | |
---|---|---|
[5958] | 1 | using System; |
2 | ||
3 | namespace 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.