Files
PrimAITE/src/primaite/exceptions.py

12 lines
262 B
Python
Raw Normal View History

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