(entityName: string, prop: string)
| 198 | } |
| 199 | |
| 200 | static missingValue(entityName: string, prop: string): ValidationError { |
| 201 | return new CursorError(`Invalid cursor condition, value for '${entityName}.${prop}' is missing.`); |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | /** Error thrown when an optimistic lock conflict is detected during entity persistence. */ |
no outgoing calls
no test coverage detected