aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorTom Christie2014-10-16 20:43:35 +0100
committerTom Christie2014-10-16 20:47:57 +0100
commitd0f610be4457947f78d20da4f2bdb04ef52d0db3 (patch)
treeadfc2b5c2844b71dbe86b314e9d226b58b1ac4c0 /docs
parent2648442a6be2f9d96bacbce2862b5e8ada49fb72 (diff)
downloaddjango-rest-framework-d0f610be4457947f78d20da4f2bdb04ef52d0db3.tar.bz2
Update release notes
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/3.0-announcement.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/3.0-announcement.md b/docs/topics/3.0-announcement.md
index dcd6d90c..f868b344 100644
--- a/docs/topics/3.0-announcement.md
+++ b/docs/topics/3.0-announcement.md
@@ -653,7 +653,7 @@ If you need to restore the previous behavior you can include the `AllowPUTAsCrea
#### Customizing error responses.
-The generic views now raise `ValidationError` for invalid data. This exception is then dealt with by the exception handler, rather than the view returning a `400 Bad Request` response directly.
+The generic views now raise `ValidationFailed` exception for invalid data. This exception is then dealt with by the exception handler, rather than the view returning a `400 Bad Request` response directly.
This change means that you can now easily customize the style of error responses across your entire API, without having to modify any of the generic views.