MCPcopy Create free account
hub / github.com/ReAPI-com/mcp-openapi / constructor

Method constructor

src/core/SpecScanner.ts:17–24  ·  view source on GitHub ↗
(
    message: string,
    public readonly filename: string,
    public readonly cause?: Error
  )

Source from the content-addressed store, hash-verified

15 */
16export class SpecScanError extends Error {
17 constructor(
18 message: string,
19 public readonly filename: string,
20 public readonly cause?: Error
21 ) {
22 super(message);
23 this.name = "SpecScanError";
24 }
25}
26
27/**

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected