File size: 277 Bytes
f71c799 |
1 2 3 4 5 6 7 8 9 10 11 12 |
from werkzeug.exceptions import HTTPException
class FilenameNotExistsError(HTTPException):
code = 400
description = "The specified filename does not exist."
class RemoteFileUploadError(HTTPException):
code = 400
description = "Error uploading remote file."
|