mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 18:59:30 +08:00
12 lines
No EOL
543 B
Text
12 lines
No EOL
543 B
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const resolve_1 = require("./resolve");
|
|
class MissingRefError extends Error {
|
|
constructor(resolver, baseId, ref, msg) {
|
|
super(msg || `can't resolve reference ${ref} from id ${baseId}`);
|
|
this.missingRef = (0, resolve_1.resolveUrl)(resolver, baseId, ref);
|
|
this.missingSchema = (0, resolve_1.normalizeId)((0, resolve_1.getFullPath)(resolver, this.missingRef));
|
|
}
|
|
}
|
|
exports.default = MissingRefError;
|
|
//# sourceMappingURL=ref_error.js.map |