Files
PrimAITE/src/primaite/exceptions.py
2025-01-02 15:05:06 +00:00

12 lines
262 B
Python

# © Crown-owned copyright 2025, 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