Exception: ConstConf::Errors::RequiredDescriptionNotConfigured

Inherits:
ConfigurationError
  • Object
show all
Defined in:
lib/const_conf/errors.rb

Overview

A custom exception class used to signal that a required configuration description has not been provided.

This exception is raised when essential application settings are not properly documented before runtime.

Examples:

Handling a required description error

begin
  # Code that may raise RequiredDescriptionNotConfigured
rescue RequiredDescriptionNotConfigured => e
  # Handle the missing required configuration description
end