ConfigurationManagerNotEnabledException.cs 314 B

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