aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/exceptions.md
diff options
context:
space:
mode:
authorJosé Padilla2014-12-14 10:16:52 -0400
committerJosé Padilla2014-12-14 10:16:52 -0400
commit478c8d724b846b370c897548f8ee89f1128e12c9 (patch)
tree76a3e8c0ed463658dd8b9074ac19a205637a7420 /docs/api-guide/exceptions.md
parent3f85b476fa2ddb8a205c03cea6684fca257dbd02 (diff)
downloaddjango-rest-framework-478c8d724b846b370c897548f8ee89f1128e12c9.tar.bz2
Update docs
Diffstat (limited to 'docs/api-guide/exceptions.md')
-rw-r--r--docs/api-guide/exceptions.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/api-guide/exceptions.md b/docs/api-guide/exceptions.md
index 467ad970..31a8431b 100644
--- a/docs/api-guide/exceptions.md
+++ b/docs/api-guide/exceptions.md
@@ -51,10 +51,10 @@ In order to alter the style of the response, you could write the following custo
from rest_framework.views import exception_handler
- def custom_exception_handler(exc):
+ def custom_exception_handler(exc, context):
# Call REST framework's default exception handler first,
# to get the standard error response.
- response = exception_handler(exc)
+ response = exception_handler(exc, context)
# Now add the HTTP status code to the response.
if response is not None: