Add ValidationError to except in get_object_or_404 for django 1.11 by njamaleddine · Pull Request #5126 · encode/django-rest-framework (original) (raw)
Description
Add ValidationError
to except
in rest_framework.generics.get_object_or_404
to handle change in Django 1.11 where get_object_or_404
returns a ValidationError
(as opposed to earlier versions that returned a ValueError
) when passing an invalid value for the uuid
.
Refs #3377 (I'd be happy to open up a separate issue for this as well, but wasn't sure if I should)