Raised for errors in query definition: * using contains or icontains filter with instance of the Model * using Queryset.update() without filter and setting each flag to True * using Queryset.delete() without filter and setting each flag to True
| 49 | |
| 50 | |
| 51 | class QueryDefinitionError(AsyncOrmException): |
| 52 | """ |
| 53 | Raised for errors in query definition: |
| 54 | |
| 55 | * using contains or icontains filter with instance of the Model |
| 56 | * using Queryset.update() without filter and setting each flag to True |
| 57 | * using Queryset.delete() without filter and setting each flag to True |
| 58 | """ |
| 59 | |
| 60 | pass |
| 61 | |
| 62 | |
| 63 | class RelationshipInstanceError(AsyncOrmException): |
no outgoing calls
no test coverage detected