@azure/msal-common
Version:
Microsoft Authentication Library for js
21 lines • 582 B
TypeScript
import * as CacheErrorCodes from "./CacheErrorCodes.js";
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