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

Method constructor

packages/feed/src/feed-errors.ts:39–46  ·  view source on GitHub ↗
(
    message: string,
    url: string,
    public readonly details?: string,
    options?: { cause?: unknown },
  )

Source from the content-addressed store, hash-verified

37 */
38export class FeedValidationError extends FeedError {
39 constructor(
40 message: string,
41 url: string,
42 public readonly details?: string,
43 options?: { cause?: unknown },
44 ) {
45 super(message, url, options);
46 }
47}
48
49/**

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected