salve-annos
Version:
A fork with support for documentation of Salve, a Javascript library which implements a validator able to validate an XML document on the basis of a subset of RelaxNG.
21 lines • 558 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Fatal = void 0;
/**
* Class modeling a fatal error in the CLI tools.
*
* @author Louis-Dominique Dubeau
* @license MPL 2.0
* @copyright Mangalam Research Center for Buddhist Languages
*/
const tools_1 = require("../../tools");
class Fatal extends Error {
constructor(msg) {
super(msg);
this.name = "Fatal";
this.message = msg;
(0, tools_1.fixPrototype)(this, Fatal);
}
}
exports.Fatal = Fatal;
//# sourceMappingURL=fatal.js.map