Try either using ObjectDoesNotExist
instead of DoesNotExist
or possibly self.DoesNotExist
. If all else fails, just try and catch a vanilla Exception
and evaluate it to see it’s type().
from django.core.exceptions import ObjectDoesNotExist
Try either using ObjectDoesNotExist
instead of DoesNotExist
or possibly self.DoesNotExist
. If all else fails, just try and catch a vanilla Exception
and evaluate it to see it’s type().
from django.core.exceptions import ObjectDoesNotExist