MCPcopy Create free account
hub / github.com/QuantiaAI/helm-agents / constructor

Method constructor

packages/dataflows/src/errors.ts:15–22  ·  view source on GitHub ↗
(
    public vendor: string,
    public symbol: string,
    detail?: string,
  )

Source from the content-addressed store, hash-verified

13/** No usable rows (empty result OR stale data). */
14export class NoMarketDataError extends VendorError {
15 constructor(
16 public vendor: string,
17 public symbol: string,
18 detail?: string,
19 ) {
20 super(`[${vendor}] no market data for ${symbol}${detail ? `: ${detail}` : ""}`);
21 this.name = "NoMarketDataError";
22 }
23}
24
25/** Rate limited — router skips to the next vendor in the chain. */

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected