When handling different types of DoesNotExist we get a false duplicate-except ```python try: do_something() except Doc.DoesNotExist: handleDoc() except OtherDoc.DoesNotExist: # here is the bad duplicate-except handleOtherDoc() ``` `