@levimc-lse/scaffold
Version:
A utility for assisting in the development of Legacy Script Engine plugins.
19 lines (18 loc) • 637 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PluginPackageNotFoundError = void 0;
class PluginPackageNotFoundError extends Error {
constructor() {
super(PluginPackageNotFoundError.MESSAGE);
}
getMessage() {
return PluginPackageNotFoundError.MESSAGE;
}
getSuggestion() {
const suggestion = new Array();
suggestion.push("Try `npx lses pack` to pack the project before.");
return suggestion;
}
}
exports.PluginPackageNotFoundError = PluginPackageNotFoundError;
PluginPackageNotFoundError.MESSAGE = "Could not find the plugin package.";