UNPKG

zephyr-scale-client

Version:

Minimal JavaScript client for Zephyr Scale (Cloud) REST API. ESM, Node >=18.

10 lines (9 loc) 215 B
export class HttpError extends Error { constructor(message, { status, url, body } = {}) { super(message); this.name = 'HttpError'; this.status = status; this.url = url; this.body = body; } }