commanding
Version:
A simple yet practical command-Line application framework, written in TypeScript.
10 lines (9 loc) • 364 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class CommandHasNoHandler extends Error {
constructor(command) {
super(`Nothing happend. You should specify a handler for command <${command.getName()}>.`);
Object.setPrototypeOf(this, new.target.prototype);
}
}
exports.CommandHasNoHandler = CommandHasNoHandler;