UNPKG

ask-cli-x

Version:

Alexa Skills Kit (ASK) Command Line Interfaces

9 lines (8 loc) 222 B
"use strict"; const CliError = require("./cli-error"); module.exports = class CliFileNotFoundError extends CliError { constructor(message) { super(message); this.name = "CliFileNotFoundError"; } };