inceptum
Version:
hipages take on the foundational library for enterprise-grade apps written in NodeJS
11 lines (10 loc) • 366 B
TypeScript
import HttpError from '../HttpError';
/**
* 401 Unauthorized
* Although the HTTP standard specifies "unauthorized",
* semantically this response means "unauthenticated".
* That is, the client must authenticate itself to get the requested response.
*/
export declare class UnauthorizedError extends HttpError {
constructor(message: string, cause?: Error);
}