Source code for virtual_ecosystem.core.exceptions

"""The ``core.exceptions`` module stores custom exceptions that are used within the core
module or used across multiple modules.
"""  # noqa: D205


[docs] class ConfigurationError(Exception): """Custom exception class for configuration failures."""
[docs] class InitialisationError(Exception): """Custom exception class for model initialisation failures."""