@eddye68/studio-client
Version:
The AWS service Studio client
15 lines (12 loc) • 367 B
text/typescript
import { HttpError } from './http-error.mjs';
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 };