using System; namespace HeuristicLab.HiveEngine { public class HiveEngineException : Exception { public HiveEngineException(string message) : base(message) { } public HiveEngineException(string message, Exception innerException) : base(message, innerException) { } } }