()
| 307 | |
| 308 | export class TransactionNotPendingMutateError extends TransactionError { |
| 309 | constructor() { |
| 310 | super( |
| 311 | `You can no longer call .mutate() as the transaction is no longer pending`, |
| 312 | ) |
| 313 | } |
| 314 | } |
| 315 | |
| 316 | export class TransactionAlreadyCompletedRollbackError extends TransactionError { |
nothing calls this directly
no outgoing calls
no test coverage detected