• File: yerror.js
  • Full Path: /home6/laduliya/mobile.digitalilab.com/yargs/build/lib/yerror.js
  • Date Modified: 10/26/1985 8:15 AM
  • File size: 301 bytes
  • MIME-type: text/plain
  • Charset: utf-8
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.YError = void 0;
class YError extends Error {
    constructor(msg) {
        super(msg || 'yargs error');
        this.name = 'YError';
        Error.captureStackTrace(this, YError);
    }
}
exports.YError = YError;