11 lines
223 B
Python
11 lines
223 B
Python
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
|