/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ export class APIError extends Error { constructor( message: string, public readonly httpMeta: { response: Response; request: Request; }, ) { super( `${message}: Status ${httpMeta.response.status} Content-Type ${ httpMeta.response.headers.get("content-type") || "" }`, ); this.name = "APIError"; } }