using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Editors { /// /// Represents an invalid configuration exception. /// /// public class InvalidConfigurationException : Exception { /// /// Initializes a new instance of the class. /// public InvalidConfigurationException() : base("Invalid Configuration Object!") { } /// /// Initializes a new instance of the class. /// /// The message that describes the error. public InvalidConfigurationException(String message) : base(message) { } } }