Method
constructor
(
resolvedAlias: string,
originalAlias: string,
collectionId: string,
availableAliases: Array<string>,
)
Source from the content-addressed store, hash-verified
| 738 | */ |
| 739 | export 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
Tested by
no test coverage detected