Spaces:
Build error
Build error
File size: 197 Bytes
a8b3f00 |
1 2 3 4 5 6 7 8 |
from libs.exception import BaseHTTPException
class UnsupportedFileTypeError(BaseHTTPException):
error_code = "unsupported_file_type"
description = "File type not allowed."
code = 415
|