Source code for src.core.configurator.configuration_error
"""This module provides the base ConfigurationError
exception for the project.
"""
[docs]
class ConfigurationError(Exception):
"""Exception raised for errors related to configuration issues.
Attributes:
message (str):
Human-readable string describing the error.
"""