mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-08-19 14:08:38 +00:00
14 lines
391 B
Python
14 lines
391 B
Python
![]() |
from web_server.errors import FateFlowError
|
||
|
|
||
|
__all__ = ['ServicesError', 'ServiceNotSupported', 'ZooKeeperNotConfigured',
|
||
|
'MissingZooKeeperUsernameOrPassword', 'ZooKeeperBackendError']
|
||
|
|
||
|
|
||
|
class ServicesError(FateFlowError):
|
||
|
message = 'Unknown services error'
|
||
|
|
||
|
|
||
|
class ServiceNotSupported(ServicesError):
|
||
|
message = 'The service {service_name} is not supported'
|
||
|
|