using System; using System.Collections.Generic; using System.Text; namespace HeuristicLab.CommandLineInterface.Exceptions { public class InvalidValueIndexException : Exception { public InvalidValueIndexException(string message) : base(message) { } } }