Urara-Blog/node_modules/.pnpm-store/v3/files/fd/7ad47aeef1a9e6f2b4215cd2cae2dfc94d7f2bd2be32244d755b3557b662c8634cf28712dd3522929fa0dff73c3b959337b0c972a5db7790d32098bc419dd1
2022-08-14 01:14:53 +08:00

6 lines
252 B
Text

import type { UriResolver } from "../types";
export default class MissingRefError extends Error {
readonly missingRef: string;
readonly missingSchema: string;
constructor(resolver: UriResolver, baseId: string, ref: string, msg?: string);
}