mirror of
https://github.com/wassname/ray.git
synced 2026-06-28 02:01:24 +08:00
12 lines
290 B
Python
12 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
|