Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-rest-framework
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
django-rest-framework
Commits
d937ce33
Commit
d937ce33
authored
Jan 13, 2014
by
Tom Christie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor cleanup
parent
73d8a2bc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
14 deletions
+13
-14
rest_framework/exceptions.py
+13
-14
No files found.
rest_framework/exceptions.py
View file @
d937ce33
...
@@ -6,6 +6,7 @@ In addition Django's built in 403 and 404 exceptions are handled.
...
@@ -6,6 +6,7 @@ In addition Django's built in 403 and 404 exceptions are handled.
"""
"""
from
__future__
import
unicode_literals
from
__future__
import
unicode_literals
from
rest_framework
import
status
from
rest_framework
import
status
import
math
class
APIException
(
Exception
):
class
APIException
(
Exception
):
...
@@ -14,10 +15,9 @@ class APIException(Exception):
...
@@ -14,10 +15,9 @@ class APIException(Exception):
Subclasses should provide `.status_code` and `.detail` properties.
Subclasses should provide `.status_code` and `.detail` properties.
"""
"""
status_code
=
status
.
HTTP_500_INTERNAL_SERVER_ERROR
status_code
=
status
.
HTTP_500_INTERNAL_SERVER_ERROR
default_detail
=
""
default_detail
=
''
def
__init__
(
self
,
detail
=
None
,
status_code
=
None
):
def
__init__
(
self
,
detail
=
None
):
self
.
status_code
=
status_code
or
self
.
status_code
self
.
detail
=
detail
or
self
.
default_detail
self
.
detail
=
detail
or
self
.
default_detail
...
@@ -46,7 +46,7 @@ class MethodNotAllowed(APIException):
...
@@ -46,7 +46,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
):
s
uper
(
MethodNotAllowed
,
self
)
.
__init__
((
detail
or
self
.
default_detail
)
%
method
)
s
elf
.
detail
=
(
detail
or
self
.
default_detail
)
%
method
class
NotAcceptable
(
APIException
):
class
NotAcceptable
(
APIException
):
...
@@ -54,7 +54,7 @@ class NotAcceptable(APIException):
...
@@ -54,7 +54,7 @@ class NotAcceptable(APIException):
default_detail
=
"Could not satisfy the request's Accept header"
default_detail
=
"Could not satisfy the request's Accept header"
def
__init__
(
self
,
detail
=
None
,
available_renderers
=
None
):
def
__init__
(
self
,
detail
=
None
,
available_renderers
=
None
):
s
uper
(
NotAcceptable
,
self
)
.
__init__
(
detail
)
s
elf
.
detail
=
detail
or
self
.
default_detail
self
.
available_renderers
=
available_renderers
self
.
available_renderers
=
available_renderers
...
@@ -63,7 +63,7 @@ class UnsupportedMediaType(APIException):
...
@@ -63,7 +63,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
):
s
uper
(
UnsupportedMediaType
,
self
)
.
__init__
((
detail
or
self
.
default_detail
)
%
media_type
)
s
elf
.
detail
=
(
detail
or
self
.
default_detail
)
%
media_type
class
Throttled
(
APIException
):
class
Throttled
(
APIException
):
...
@@ -72,10 +72,10 @@ class Throttled(APIException):
...
@@ -72,10 +72,10 @@ class Throttled(APIException):
extra_detail
=
"Expected available in
%
d second
%
s."
extra_detail
=
"Expected available in
%
d second
%
s."
def
__init__
(
self
,
wait
=
None
,
detail
=
None
):
def
__init__
(
self
,
wait
=
None
,
detail
=
None
):
super
(
Throttled
,
self
)
.
__init__
(
detail
)
if
wait
is
None
:
self
.
detail
=
detail
or
self
.
default_detail
import
math
self
.
wait
=
None
self
.
wait
=
wait
and
math
.
ceil
(
wait
)
or
None
else
:
if
wait
is
not
None
:
format
=
(
detail
or
self
.
default_detail
)
+
self
.
extra_detail
format
=
self
.
detail
+
self
.
extra_detail
self
.
detail
=
format
%
(
wait
,
wait
!=
1
and
's'
or
''
)
self
.
detail
=
format
%
(
self
.
wait
,
self
.
wait
!=
1
and
's'
or
''
)
self
.
wait
=
math
.
ceil
(
wait
)
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment