(message: string)
| 70 | // Collection Configuration Errors |
| 71 | export class CollectionConfigurationError extends TanStackDBError { |
| 72 | constructor(message: string) { |
| 73 | super(message) |
| 74 | this.name = `CollectionConfigurationError` |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | export class CollectionRequiresConfigError extends CollectionConfigurationError { |
nothing calls this directly
no outgoing calls
no test coverage detected