()
| 268 | |
| 269 | export class MissingUpdateHandlerError extends MissingHandlerError { |
| 270 | constructor() { |
| 271 | super( |
| 272 | `Collection.update called directly (not within an explicit transaction) but no 'onUpdate' handler is configured.`, |
| 273 | ) |
| 274 | } |
| 275 | } |
| 276 | |
| 277 | export class MissingDeleteHandlerError extends MissingHandlerError { |
nothing calls this directly
no outgoing calls
no test coverage detected