using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EasyDevCore.Configuration { /// /// System.Configuration.ConfigurationManager also in https://www.nuget.org/packages/System.Configuration.ConfigurationManager/ /// public class ConfigurationErrorsException : Exception { /// Initializes a new instance of the class. public ConfigurationErrorsException() { } /// Initializes a new instance of the class. /// The message that describes the error. public ConfigurationErrorsException(string message) : base(message) { } /// Initializes a new instance of the class. /// The error message that explains the reason for the exception. /// /// The exception that is the cause of the current exception, or a null reference (nullNothingnullptra null reference (Nothing in Visual Basic) in Visual Basic) if no inner exception is specified. /// public ConfigurationErrorsException(string message, Exception innerException) : base(message, innerException) { } } }