Merge pull request #1379 from bodylabs/exception_example

Fix doc for custom exception sample
This commit is contained in:
Tom Christie 2014-01-31 09:52:47 -08:00
commit fab531961b

View File

@ -94,7 +94,7 @@ For example, if your API relies on a third party service that may sometimes be u
class ServiceUnavailable(APIException): class ServiceUnavailable(APIException):
status_code = 503 status_code = 503
detail = 'Service temporarily unavailable, try again later.' default_detail = 'Service temporarily unavailable, try again later.'
## ParseError ## ParseError