mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-13 13:16:55 +03:00
Merge pull request #2055 from kevinlondon/patch-6
#2054: Update exceptions to allow custom detail
This commit is contained in:
commit
3e8068757b
|
@ -70,7 +70,7 @@ class MethodNotAllowed(APIException):
|
||||||
default_detail = "Method '%s' not allowed."
|
default_detail = "Method '%s' not allowed."
|
||||||
|
|
||||||
def __init__(self, method, detail=None):
|
def __init__(self, method, detail=None):
|
||||||
self.detail = (detail or self.default_detail) % method
|
self.detail = detail or (self.default_detail % method)
|
||||||
|
|
||||||
|
|
||||||
class NotAcceptable(APIException):
|
class NotAcceptable(APIException):
|
||||||
|
@ -87,7 +87,7 @@ class UnsupportedMediaType(APIException):
|
||||||
default_detail = "Unsupported media type '%s' in request."
|
default_detail = "Unsupported media type '%s' in request."
|
||||||
|
|
||||||
def __init__(self, media_type, detail=None):
|
def __init__(self, media_type, detail=None):
|
||||||
self.detail = (detail or self.default_detail) % media_type
|
self.detail = detail or (self.default_detail % media_type)
|
||||||
|
|
||||||
|
|
||||||
class Throttled(APIException):
|
class Throttled(APIException):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user