mirror of
https://github.com/dtomlinson91/panaetius.git
synced 2025-12-21 20:55:43 +00:00
14 lines
206 B
Python
14 lines
206 B
Python
"""Exceptions for the module."""
|
|
|
|
|
|
class KeyErrorTooDeepException(Exception):
|
|
pass
|
|
|
|
|
|
class LoggingDirectoryDoesNotExistException(Exception):
|
|
pass
|
|
|
|
|
|
class InvalidPythonException(Exception):
|
|
pass
|