commanding
Version:
A simple yet practical command-Line application framework, written in TypeScript.
10 lines (9 loc) • 326 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class MissingArgument extends Error {
constructor(requirement) {
super(`Required argument "${requirement.name}" is missing.`);
Object.setPrototypeOf(this, new.target.prototype);
}
}
exports.MissingArgument = MissingArgument;