export class CacheManagerError extends Error { public constructor(message: string) { super(message); this.name = this.constructor.name; } } export class ConfigurationError extends CacheManagerError {} export class CheckCacheError extends CacheManagerError {} export class CheckCacheBatchError extends CacheManagerError {} export class SaveCacheError extends CacheManagerError {} export class RemoveCacheError extends CacheManagerError {} export class ClearCacheError extends CacheManagerError {} export class CleanupCacheError extends CacheManagerError {} export class GetStorageError extends CacheManagerError {} export class GetMaxStorageError extends CacheManagerError {} export class SetMaxStorageError extends CacheManagerError {} export class WasBilledError extends CacheManagerError {}