Raised for update of models without primary_key set (cannot retrieve from db) or for saving a model with relation to unsaved model (cannot extract fk value).
| 65 | |
| 66 | |
| 67 | class ModelPersistenceError(AsyncOrmException): |
| 68 | """ |
| 69 | Raised for update of models without primary_key set (cannot retrieve from db) |
| 70 | or for saving a model with relation to unsaved model (cannot extract fk value). |
| 71 | """ |
| 72 | |
| 73 | pass |
| 74 | |
| 75 | |
| 76 | class SignalDefinitionError(AsyncOrmException): |
no outgoing calls
no test coverage detected