您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

error_services.py 389B

12345678910111213
  1. from web_server.errors import RagFlowError
  2. __all__ = ['ServicesError', 'ServiceNotSupported', 'ZooKeeperNotConfigured',
  3. 'MissingZooKeeperUsernameOrPassword', 'ZooKeeperBackendError']
  4. class ServicesError(RagFlowError):
  5. message = 'Unknown services error'
  6. class ServiceNotSupported(ServicesError):
  7. message = 'The service {service_name} is not supported'