mirror of
https://github.com/MeowLynxSea/Proksea.git
synced 2025-07-10 19:34:41 +00:00
21 lines
559 B
TypeScript
21 lines
559 B
TypeScript
import * as CacheErrorCodes from "./CacheErrorCodes";
|
|
export { CacheErrorCodes };
|
|
export declare const CacheErrorMessages: {
|
|
cache_quota_exceeded: string;
|
|
cache_error_unknown: string;
|
|
};
|
|
/**
|
|
* Error thrown when there is an error with the cache
|
|
*/
|
|
export declare class CacheError extends Error {
|
|
/**
|
|
* Short string denoting error
|
|
*/
|
|
errorCode: string;
|
|
/**
|
|
* Detailed description of error
|
|
*/
|
|
errorMessage: string;
|
|
constructor(errorCode: string, errorMessage?: string);
|
|
}
|
|
//# sourceMappingURL=CacheError.d.ts.map
|