The DoesNotExist exception is raised when expecting data, such as a ``.get()`` operation.
| 95 | |
| 96 | |
| 97 | class DoesNotExist(NotExistOrMultiple): |
| 98 | """ |
| 99 | The DoesNotExist exception is raised when expecting data, such as a ``.get()`` operation. |
| 100 | """ |
| 101 | |
| 102 | TEMPLATE = 'Object "{}" does not exist' |
| 103 | |
| 104 | |
| 105 | class IncompleteInstanceError(OperationalError): |