ask-cli-x
Version:
Alexa Skills Kit (ASK) Command Line Interfaces
18 lines (17 loc) • 629 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.CliDataFormatError = void 0;
const cli_error_1 = __importDefault(require("./cli-error"));
class CliDataFormatError extends cli_error_1.default {
constructor(message) {
super(message);
this.name = "CliDataFormatError";
if (Object.setPrototypeOf) {
Object.setPrototypeOf(this, new.target.prototype);
}
}
}
exports.CliDataFormatError = CliDataFormatError;