(self)
| 91 | self.pk_val: Any = pk_val |
| 92 | |
| 93 | def __str__(self) -> str: |
| 94 | return f"{self.model.__name__} has no object with {self.pk_name}={self.pk_val}" |
| 95 | |
| 96 | |
| 97 | class DoesNotExist(NotExistOrMultiple): |
nothing calls this directly
no outgoing calls
no test coverage detected