Files
PrimAITE/src/primaite/exceptions.py
2023-10-27 14:26:52 +01: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