diff options
Diffstat (limited to 'docs/api-guide/exceptions.md')
| -rw-r--r-- | docs/api-guide/exceptions.md | 8 | 
1 files changed, 6 insertions, 2 deletions
| diff --git a/docs/api-guide/exceptions.md b/docs/api-guide/exceptions.md index c30f586a..8b3e50f1 100644 --- a/docs/api-guide/exceptions.md +++ b/docs/api-guide/exceptions.md @@ -25,7 +25,7 @@ For example, the following request:      DELETE http://api.example.com/foo/bar HTTP/1.1      Accept: application/json -Might recieve an error response indicating that the `DELETE` method is not allowed on that resource: +Might receive an error response indicating that the `DELETE` method is not allowed on that resource:      HTTP/1.1 405 Method Not Allowed      Content-Type: application/json; charset=utf-8 @@ -33,6 +33,10 @@ Might recieve an error response indicating that the `DELETE` method is not allow      {"detail": "Method 'DELETE' not allowed."} +--- + +# API Reference +  ## APIException  **Signature:** `APIException(detail=None)` @@ -98,4 +102,4 @@ 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".  [cite]: http://www.doughellmann.com/articles/how-tos/python-exception-handling/index.html -[authentication]: authentication.md
\ No newline at end of file +[authentication]: authentication.md | 
