/** * Specialized error type intended to be used when a HTTP request is malformed * or invalid (HTTP 400). * * @memberof http * @extends {Error} */ export declare class BadRequestError extends Error { /** * @param message The error message associated with the error. */ constructor(message?: string | undefined); }