()
| 323 | |
| 324 | export class TransactionNotPendingCommitError extends TransactionError { |
| 325 | constructor() { |
| 326 | super( |
| 327 | `You can no longer call .commit() as the transaction is no longer pending`, |
| 328 | ) |
| 329 | } |
| 330 | } |
| 331 | |
| 332 | export class NoPendingSyncTransactionWriteError extends TransactionError { |
nothing calls this directly
no outgoing calls
no test coverage detected