(joinType: string)
| 568 | |
| 569 | export class UnsupportedJoinTypeError extends JoinError { |
| 570 | constructor(joinType: string) { |
| 571 | super(`Unsupported join type: ${joinType}`) |
| 572 | } |
| 573 | } |
| 574 | |
| 575 | export class InvalidJoinConditionSameSourceError extends JoinError { |
nothing calls this directly
no outgoing calls
no test coverage detected