MCPcopy Index your code
hub / github.com/TanStack/db / constructor

Method constructor

packages/db/src/errors.ts:740–749  ·  view source on GitHub ↗
(
    resolvedAlias: string,
    originalAlias: string,
    collectionId: string,
    availableAliases: Array<string>,
  )

Source from the content-addressed store, hash-verified

738 */
739export class SubscriptionNotFoundError extends QueryCompilationError {
740 constructor(
741 resolvedAlias: string,
742 originalAlias: string,
743 collectionId: string,
744 availableAliases: Array<string>,
745 ) {
746 super(
747 `Internal error: subscription for alias '${resolvedAlias}' (remapped from '${originalAlias}', collection '${collectionId}') is missing in join pipeline. Available aliases: ${availableAliases.join(`, `)}. This indicates a bug in alias tracking.`,
748 )
749 }
750}
751
752/**

Callers

nothing calls this directly

Calls 1

joinMethod · 0.45

Tested by

no test coverage detected