source:
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.HiveEngine/3.3/Exceptions/HiveEngineException.cs
@
6872
Last change on this file since 6872 was 5958, checked in by cneumuel, 14 years ago | |
---|---|
File size: 295 bytes |
Line | |
---|---|
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.