(message: string)
| 102 | // Collection State Errors |
| 103 | export class CollectionStateError extends TanStackDBError { |
| 104 | constructor(message: string) { |
| 105 | super(message) |
| 106 | this.name = `CollectionStateError` |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | export class CollectionInErrorStateError extends CollectionStateError { |
nothing calls this directly
no outgoing calls
no test coverage detected