mirror of
https://github.com/dtomlinson91/panaetius.git
synced 2025-12-22 04:55:44 +00:00
14 lines
402 B
Python
14 lines
402 B
Python
"""Module that defines custom exceptions for Panetius."""
|
|
|
|
|
|
class KeyErrorTooDeepException(Exception):
|
|
"""Raised if the keys in the config.yml are nested too deeply."""
|
|
|
|
|
|
class LoggingDirectoryDoesNotExistException(Exception):
|
|
"""Raised if the logging directory does not exist."""
|
|
|
|
|
|
class InvalidPythonException(Exception):
|
|
"""Raised if the environement variable Python type is invalid."""
|