@eddye68/studio-client
Version:
The AWS service Studio client
15 lines (12 loc) • 366 B
TypeScript
import { HttpError } from './http-error.js';
declare class HttpResponseError extends HttpError {
readonly code: number;
readonly name: string;
/**
*
* @param {Response} response
*/
constructor(message: string, response: Response);
static buildMessage(message: string, response: Response): string;
}
export { HttpResponseError };