django-rest-framework/docs/api-guide/exceptions.md

175 lines
7.3 KiB
Markdown
Raw Normal View History

source: exceptions.py
2012-09-09 01:06:13 +04:00
2012-09-01 23:26:27 +04:00
# Exceptions
2012-09-12 13:12:13 +04:00
> Exceptions… allow error handling to be organized cleanly in a central or high-level place within the program structure.
>
> — Doug Hellmann, [Python Exception Handling Techniques][cite]
2012-09-01 23:26:27 +04:00
2012-09-12 13:12:13 +04:00
## Exception handling in REST framework views
2012-09-12 16:11:26 +04:00
REST framework's views handle various exceptions, and deal with returning appropriate error responses.
2012-09-12 13:12:13 +04:00
The handled exceptions are:
* Subclasses of `APIException` raised inside REST framework.
* Django's `Http404` exception.
* Django's `PermissionDenied` exception.
2012-09-12 16:11:26 +04:00
In each case, REST framework will return a response with an appropriate status code and content-type. The body of the response will include any additional details regarding the nature of the error.
2012-09-12 13:12:13 +04:00
By default all error responses will include a key `detail` in the body of the response, but other keys may also be included.
2012-09-12 13:12:13 +04:00
For example, the following request:
DELETE http://api.example.com/foo/bar HTTP/1.1
Accept: application/json
2012-10-21 18:34:07 +04:00
Might receive an error response indicating that the `DELETE` method is not allowed on that resource:
2012-09-12 13:12:13 +04:00
HTTP/1.1 405 Method Not Allowed
Content-Type: application/json
2012-09-12 13:12:13 +04:00
Content-Length: 42
2012-09-12 13:12:13 +04:00
{"detail": "Method 'DELETE' not allowed."}
## Custom exception handling
You can implement custom exception handling by creating a handler function that converts exceptions raised in your API views into response objects. This allows you to control the style of error responses used by your API.
The function must take a single argument, which is the exception to be handled, and should either return a `Response` object, or return `None` if the exception cannot be handled. If the handler returns `None` then the exception will be re-raised and Django will return a standard HTTP 500 'server error' response.
For example, you might want to ensure that all error responses include the HTTP status code in the body of the response, like so:
HTTP/1.1 405 Method Not Allowed
Content-Type: application/json
Content-Length: 62
{"status_code": 405, "detail": "Method 'DELETE' not allowed."}
In order to alter the style of the response, you could write the following custom exception handler:
from rest_framework.views import exception_handler
2014-12-14 17:16:52 +03:00
def custom_exception_handler(exc, context):
# Call REST framework's default exception handler first,
# to get the standard error response.
2014-12-14 17:16:52 +03:00
response = exception_handler(exc, context)
# Now add the HTTP status code to the response.
if response is not None:
response.data['status_code'] = response.status_code
return response
The exception handler must also be configured in your settings, using the `EXCEPTION_HANDLER` setting key. For example:
REST_FRAMEWORK = {
'EXCEPTION_HANDLER': 'my_project.my_app.utils.custom_exception_handler'
}
If not specified, the `'EXCEPTION_HANDLER'` setting defaults to the standard exception handler provided by REST framework:
REST_FRAMEWORK = {
'EXCEPTION_HANDLER': 'rest_framework.views.exception_handler'
}
Note that the exception handler will only be called for responses generated by raised exceptions. It will not be used for any responses returned directly by the view, such as the `HTTP_400_BAD_REQUEST` responses that are returned by the generic views when serializer validation fails.
2012-10-17 18:41:57 +04:00
---
# API Reference
2012-09-12 13:12:13 +04:00
## APIException
**Signature:** `APIException()`
2012-09-12 13:12:13 +04:00
2014-09-17 20:29:15 +04:00
The **base class** for all exceptions raised inside an `APIView` class or `@api_view`.
2012-09-12 13:12:13 +04:00
To provide a custom exception, subclass `APIException` and set the `.status_code` and `.default_detail` properties on the class.
2012-09-12 13:12:13 +04:00
For example, if your API relies on a third party service that may sometimes be unreachable, you might want to implement an exception for the "503 Service Unavailable" HTTP response code. You could do this like so:
from rest_framework.exceptions import APIException
class ServiceUnavailable(APIException):
status_code = 503
default_detail = 'Service temporarily unavailable, try again later.'
2012-09-12 13:12:13 +04:00
## ParseError
**Signature:** `ParseError(detail=None)`
Raised if the request contains malformed data when accessing `request.data`.
2012-09-12 13:12:13 +04:00
By default this exception results in a response with the HTTP status code "400 Bad Request".
## AuthenticationFailed
2012-10-17 17:59:37 +04:00
**Signature:** `AuthenticationFailed(detail=None)`
2012-10-17 17:59:37 +04:00
Raised when an incoming request includes incorrect authentication.
By default this exception results in a response with the HTTP status code "401 Unauthenticated", but it may also result in a "403 Forbidden" response, depending on the authentication scheme in use. See the [authentication documentation][authentication] for more details.
## NotAuthenticated
**Signature:** `NotAuthenticated(detail=None)`
Raised when an unauthenticated request fails the permission checks.
2012-10-17 17:59:37 +04:00
By default this exception results in a response with the HTTP status code "401 Unauthenticated", but it may also result in a "403 Forbidden" response, depending on the authentication scheme in use. See the [authentication documentation][authentication] for more details.
2012-09-12 13:12:13 +04:00
## PermissionDenied
**Signature:** `PermissionDenied(detail=None)`
Raised when an authenticated request fails the permission checks.
2012-09-12 13:12:13 +04:00
By default this exception results in a response with the HTTP status code "403 Forbidden".
## MethodNotAllowed
**Signature:** `MethodNotAllowed(method, detail=None)`
Raised when an incoming request occurs that does not map to a handler method on the view.
By default this exception results in a response with the HTTP status code "405 Method Not Allowed".
## UnsupportedMediaType
**Signature:** `UnsupportedMediaType(media_type, detail=None)`
Raised if there are no parsers that can handle the content type of the request data when accessing `request.data`.
2012-09-12 13:12:13 +04:00
By default this exception results in a response with the HTTP status code "415 Unsupported Media Type".
## Throttled
**Signature:** `Throttled(wait=None, detail=None)`
Raised when an incoming request fails the throttling checks.
By default this exception results in a response with the HTTP status code "429 Too Many Requests".
2014-11-25 15:04:46 +03:00
## ValidationError
**Signature:** `ValidationError(detail)`
The `ValidationError` exception is slightly different from the other `APIException` classes:
* The `detail` argument is mandatory, not optional.
* The `detail` argument may be a list or dictionary of error details, and may also be a nested data structure.
* By convention you should import the serializers module and use a fully qualified `ValidationError` style, in order to differentiate it from Django's built-in validation error. For example. `raise serializers.ValidationError('This field must be an integer value.')`
The `ValidationError` class should be used for serializer and field validation, and by validator classes. It is also raised when calling `serializer.is_valid` with the `raise_exception` keyword argument:
serializer.is_valid(raise_exception=True)
The generic views use the `raise_exception=True` flag, which means that you can override the style of validation error responses globally in your API. To do so, use a custom exception handler, as described above.
By default this exception results in a response with the HTTP status code "400 Bad Request".
2012-10-17 17:59:37 +04:00
[cite]: http://www.doughellmann.com/articles/how-tos/python-exception-handling/index.html
2012-11-09 17:49:52 +04:00
[authentication]: authentication.md