@jil/args
Version:
A convention based argument parsing and formatting library, with strict validation checks
12 lines • 376 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ValidationError = void 0;
class ValidationError extends Error {
constructor(message, option = '') {
super(message);
this.name = 'ValidationError';
this.option = option;
}
}
exports.ValidationError = ValidationError;
//# sourceMappingURL=ValidationError.js.map