UNPKG

@gabliam/cache

Version:
14 lines (13 loc) 661 B
"use strict"; 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;