mirror of
https://github.com/vale981/ray
synced 2025-03-06 18:41:40 -05:00
13 lines
304 B
Python
13 lines
304 B
Python
from ray.rllib.utils.annotations import PublicAPI
|
|
|
|
|
|
@PublicAPI
|
|
class UnsupportedSpaceException(Exception):
|
|
"""Error for an unsupported action or observation space."""
|
|
pass
|
|
|
|
|
|
@PublicAPI
|
|
class EnvError(Exception):
|
|
"""Error if we encounter an error during RL environment validation."""
|
|
pass
|