UNPKG
zephyr-scale-client
Version:
latest (0.1.1)
0.1.1
0.1.0
Minimal JavaScript client for Zephyr Scale (Cloud) REST API. ESM, Node >=18.
zephyr-scale-client
/
src
/
errors.js
10 lines
(9 loc)
•
215 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
class
HttpError
extends
Error
{
constructor
(message, { status, url, body } = {}) {
super
(message);
this
.name =
'HttpError'
;
this
.status = status;
this
.url = url;
this
.body = body; } }