Source code for cligram.exceptions.config

from . import CligramError


[docs] class ConfigError(CligramError): """Base exception class for configuration-related errors.""" pass
[docs] class ConfigSearchError(ConfigError): """Raised when there is an error searching for the configuration file.""" pass