I am trying to handle all errors in my application before they occur, the validation errors appears through
serializer.is_valid()
serializer.errors
I am going through rest framework serializer code base right now to find all errors, but I feel its a bit inefficient, are there any references for common errors in serializer validation?