()
| 260 | |
| 261 | export class MissingInsertHandlerError extends MissingHandlerError { |
| 262 | constructor() { |
| 263 | super( |
| 264 | `Collection.insert called directly (not within an explicit transaction) but no 'onInsert' handler is configured.`, |
| 265 | ) |
| 266 | } |
| 267 | } |
| 268 | |
| 269 | export class MissingUpdateHandlerError extends MissingHandlerError { |
nothing calls this directly
no outgoing calls
no test coverage detected