import { HttpException } from "@nestjs/common"; /** * Thrown when authentication fails due to invalid credentials format or token. * * Returns HTTP 401 Unauthorized. */ export declare class InvalidCredentialsException extends HttpException { readonly message: string; /** * @param message - Description of why the credentials are invalid */ constructor(message: string); /** * Returns the error response body. * * @returns Object containing statusCode (401) and message */ getResponse(): Record; }