@othree.io/excuses
Version:
Excuses
12 lines • 336 B
TypeScript
/**
* Custom Error class representing an unauthorized access error.
*/
export declare class UnauthorizedError extends Error {
/** Static error code to identify the error type. */
static ERROR: string;
/**
* Creates a new UnauthorizedError.
*/
constructor();
}
//# sourceMappingURL=unauthorized-error.d.ts.map