#1715 - Added more tests. MAde use of the pydantic model_post_init function for proper ipv4 cofiguration checking. Added NetworkError to exceptions.py.

This commit is contained in:
Chris McCarthy
2023-07-31 16:55:45 +01:00
parent 59394c3642
commit 0532db960a
6 changed files with 129 additions and 24 deletions

View File

@@ -9,3 +9,9 @@ class RLlibAgentError(PrimaiteError):
"""Raised when there is a generic error with a RLlib agent that is specific to PRimAITE."""
pass
class NetworkError(PrimaiteError):
"""Raised when an error occurs at the network level."""
pass