Files
PrimAITE/src/primaite/exceptions.py
2023-11-24 15:17:08 +00:00

12 lines
262 B
Python

# © Crown-owned copyright 2023, Defence Science and Technology Laboratory UK
class PrimaiteError(Exception):
"""The root PrimAITE Error."""
pass
class NetworkError(PrimaiteError):
"""Raised when an error occurs at the network level."""
pass