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