[docs]classRequestIsNoneError(Exception):"""Raised when a request is None."""
[docs]classReplyIsNoneError(Exception):"""Raised when a reply is None."""
[docs]classInvalidRequestError(Exception):"""Raised when a wrong request was received."""def__init__(self,expected,got):super().__init__(f"Expected {expected}, got {got}.")
[docs]classInvalidResponseError(Exception):"""Raised when a wrong response was received."""def__init__(self,expected,got):super().__init__(f"Expected {expected}, got {got}.")
[docs]classTasksNotFinishedError(Exception):"""Raised when neither the signal_monitor_task nor the transceive_task returned. """
[docs]classSignalInterruptError(Exception):"""Raised when a signal was received."""
[docs]classInitializationFailedError(Exception):"""Raised when initialization of an experiment failed."""
[docs]classExperimentSetupFailedError(Exception):"""Raised when the experiment setup failed."""
[docs]classDeadChildrenRisingAsZombiesError(Exception):"""Raised when childrens died and starting to become zombies."""
[docs]classPrematureTaskDeathError(Exception):"""Raised when a tasks died before its time."""
[docs]classExperimentAlreadyRunningError(Exception):"""Raised during experiment start if experiment is already running."""
[docs]classSimControllerFailedError(Exception):"""Raised when a simulation controller could not be started."""
[docs]classEnvConductorFailedError(Exception):"""Raised when an error during the execution of an environment conductor occurs. """
[docs]classAgentConductorFailedError(Exception):"""Raised when an error during the execution of an agent conductor occurs. """
[docs]classOutOfActionSpaceError(Exception):"""This error is raised if an :class:`.ActuatorInformation` receives a value that is not contained in the action space of that actuator. """
[docs]classOutOfObservationSpaceError(Exception):"""This error is raised if a :class:`.SensorInformation` is created with a value that is not contained in the observation space of that sensor. """
[docs]classUnknownModeError(Exception):"""This error is raised if a :class:`palaestrai.agent.Muscle` is receiving an unknown Mode."""
[docs]classBrainMuscleConnectionFailedError(Exception):"""This error is raised if the :class:`palaestrai.agent.Brain` is unable to connect to the given port, because the port is already used by another process."""
[docs]classNoneInputError(Exception):"""None as Input"""
[docs]classEnvironmentHasNoUIDError(Exception):"""At least one environment in a multi-environment setup has no UID."""
[docs]classSimulationSetupError(RuntimeError):def__init__(self,experiment_run_id,message):super().__init__(message)self.message=messageself.experiment_run_id=experiment_run_iddef__str__(self):return"%s (in experiment run: %s)"%(self.message,self.experiment_run_id,)