UNPKG

@lomi./sdk

Version:

Official TypeScript SDK for the lomi. API

12 lines 370 B
export class ApiError extends Error { constructor(request, response, message) { super(message); this.name = 'ApiError'; this.url = response.url; this.status = response.status; this.statusText = response.statusText; this.body = response.body; this.request = request; } } //# sourceMappingURL=ApiError.js.map