django-rest-framework/djangorestframework/exceptions.py

55 lines
1.6 KiB
Python
Raw Normal View History

2012-08-27 02:06:52 +04:00
"""
Handled exceptions raised by REST framework.
In addition Django's built in 403 and 404 exceptions are handled.
(`django.http.Http404` and `django.core.exceptions.PermissionDenied`)
"""
2012-08-25 16:43:28 +04:00
from djangorestframework import status
class ParseError(Exception):
2012-08-25 16:43:28 +04:00
status_code = status.HTTP_400_BAD_REQUEST
2012-08-27 02:06:52 +04:00
default_detail = 'Malformed request.'
2012-08-25 16:43:28 +04:00
def __init__(self, detail=None):
self.detail = detail or self.default_detail
class PermissionDenied(Exception):
status_code = status.HTTP_403_FORBIDDEN
2012-08-27 02:06:52 +04:00
default_detail = 'You do not have permission to access this resource.'
2012-08-25 16:43:28 +04:00
def __init__(self, detail=None):
self.detail = detail or self.default_detail
class MethodNotAllowed(Exception):
status_code = status.HTTP_405_METHOD_NOT_ALLOWED
2012-08-27 02:06:52 +04:00
default_detail = "Method '%s' not allowed."
2012-08-27 02:06:52 +04:00
def __init__(self, method, detail=None):
self.detail = (detail or self.default_detail) % method
2012-08-27 00:55:13 +04:00
class UnsupportedMediaType(Exception):
status_code = status.HTTP_415_UNSUPPORTED_MEDIA_TYPE
2012-08-27 02:06:52 +04:00
default_detail = "Unsupported media type '%s' in request."
2012-08-27 00:55:13 +04:00
def __init__(self, media_type, detail=None):
self.detail = (detail or self.default_detail) % media_type
2012-08-27 00:55:13 +04:00
2012-08-27 02:06:52 +04:00
class Throttled(Exception):
status_code = status.HTTP_429_TOO_MANY_REQUESTS
default_detail = "Request was throttled. Expected available in %d seconds."
def __init__(self, wait, detail=None):
import math
self.detail = (detail or self.default_detail) % int(math.ceil(wait))
REST_FRAMEWORK_EXCEPTIONS = (
ParseError, PermissionDenied, MethodNotAllowed,
UnsupportedMediaType, Throttled
)