Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

error.py 612B

2 år sedan
2 år sedan
1234567891011121314151617181920
  1. # -*- coding:utf-8 -*-
  2. from libs.exception import BaseHTTPException
  3. class ArchivedDocumentImmutableError(BaseHTTPException):
  4. error_code = 'archived_document_immutable'
  5. description = "Cannot operate when document was archived."
  6. code = 403
  7. class DocumentIndexingError(BaseHTTPException):
  8. error_code = 'document_indexing'
  9. description = "Cannot operate document during indexing."
  10. code = 403
  11. class DatasetNotInitedError(BaseHTTPException):
  12. error_code = 'dataset_not_inited'
  13. description = "The dataset is still being initialized or indexing. Please wait a moment."
  14. code = 403