- Rolled the _PrimaitePaths class out throughout the code base. - Updated the docs to reference the new version paths. - Updated the author from qinetiq to dstl - Bumped version number to 2.0.0rc2
12 lines
296 B
Python
12 lines
296 B
Python
# Crown Owned Copyright (C) Dstl 2023. DEFCON 703. Shared in confidence.
|
|
class PrimaiteError(Exception):
|
|
"""The root PrimAITe Error."""
|
|
|
|
pass
|
|
|
|
|
|
class RLlibAgentError(PrimaiteError):
|
|
"""Raised when there is a generic error with a RLlib agent that is specific to PRimAITE."""
|
|
|
|
pass
|