Files
ray-project--ray/python/ray/util/state/exception.py
T
2026-07-13 13:17:40 +08:00

19 lines
268 B
Python

"""Internal Error"""
class DataSourceUnavailable(Exception):
pass
"""User-facing Error"""
class RayStateApiException(Exception):
pass
class ServerUnavailable(RayStateApiException):
"""Thrown when failing to connect to dashboard server"""
pass