@gabliam/cache
Version:
cache plugin for gabliam
14 lines (13 loc) • 661 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CacheManagerPgkNotInstalledError = void 0;
class CacheManagerPgkNotInstalledError extends Error {
constructor(Cachename) {
super();
this.name = 'CacheManagerPgkNotInstalledError';
// Set the prototype explicitly.
Object.setPrototypeOf(this, CacheManagerPgkNotInstalledError.prototype);
this.message = ` CacheManager "${Cachename}" package has not been found installed. Try to install it: npm install ${Cachename} --save or yarn add ${Cachename}`;
}
}
exports.CacheManagerPgkNotInstalledError = CacheManagerPgkNotInstalledError;