MCPcopy Create free account
hub / github.com/ascorbic/astro-loaders / constructor

Method constructor

packages/feed/src/feed-errors.ts:24–32  ·  view source on GitHub ↗
(
    message: string,
    url: string,
    public readonly code: string,
    public readonly statusCode?: number,
    options?: { cause?: unknown },
  )

Source from the content-addressed store, hash-verified

22 */
23export class FeedLoadError extends FeedError {
24 constructor(
25 message: string,
26 url: string,
27 public readonly code: string,
28 public readonly statusCode?: number,
29 options?: { cause?: unknown },
30 ) {
31 super(message, url, options);
32 }
33}
34
35/**

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected