()
| 315 | |
| 316 | export class TransactionAlreadyCompletedRollbackError extends TransactionError { |
| 317 | constructor() { |
| 318 | super( |
| 319 | `You can no longer call .rollback() as the transaction is already completed`, |
| 320 | ) |
| 321 | } |
| 322 | } |
| 323 | |
| 324 | export class TransactionNotPendingCommitError extends TransactionError { |
nothing calls this directly
no outgoing calls
no test coverage detected