classifier-general / app /core /exceptions.py
AyoubChLin's picture
feat: initial commit of Classifier General API with FastAPI
50231a8
raw
history blame contribute delete
189 Bytes
class ClassificationError(Exception):
pass
class LanguageDetectionError(Exception):
pass
class ExtractionError(Exception):
pass
class ValidationError(Exception):
pass