comixify/api/exceptions.py

13 lines
339 B
Python
Raw Permalink Normal View History

2018-07-31 19:51:39 +00:00
from django.conf import settings
from rest_framework.exceptions import APIException
class FileExtensionError(APIException):
status_code = 400
default_detail = 'Invalid file extension'
class TooLargeFile(APIException):
status_code = 400
default_detail = f'File cannot be larger than {settings.MAX_FILE_SIZE/1000000} MB'