ConfigurationManagerNotEnabledException.cs 296 B

12345678
  1. #nullable enable
  2. namespace Terminal.Gui.Configuration;
  3. /// <summary>
  4. /// The exception that is thrown when a <see cref="ConfigurationManager"/> API is called but the configuration manager is not enabled.
  5. /// </summary>
  6. public class ConfigurationManagerNotEnabledException : Exception
  7. { }