(message: string)
| 561 | // JOIN Operation Errors |
| 562 | export class JoinError extends TanStackDBError { |
| 563 | constructor(message: string) { |
| 564 | super(message) |
| 565 | this.name = `JoinError` |
| 566 | } |
| 567 | } |
| 568 | |
| 569 | export class UnsupportedJoinTypeError extends JoinError { |
nothing calls this directly
no outgoing calls
no test coverage detected