mirror of
https://github.com/vale981/ray
synced 2025-03-06 18:41:40 -05:00
11 lines
290 B
Python
11 lines
290 B
Python
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
|
|
from ray.rllib.utils.annotations import PublicAPI
|
|
|
|
|
|
@PublicAPI
|
|
class UnsupportedSpaceException(Exception):
|
|
"""Error for an unsupported action or observation space."""
|
|
pass
|