Files
PrimAITE/src/primaite/exceptions.py
Charlie Crane ab2dd6ca27 Revert "#2912 - Actioning Review Comments"
This reverts commit b11678a128.
2025-01-03 14:41:45 +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