12 lines
262 B
Python
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
|