UNPKG
@logcomex/aylawc-core
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
An experimental library of web components
@logcomex/aylawc-core
/
core
/
http
/
http.interface.js
10 lines
•
253 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
class
HttpError
extends
Error
{
constructor
(
error
) {
super
(
JSON
.
stringify
(error));
this
.
name
=
'HttpErrorRequest'
; }
parse
(
) {
return
JSON
.
parse
(
this
.
message
); } }
//# sourceMappingURL=http.interface.js.map