This repository has been archived on 2022-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
hydrogen-web/src/error.js

6 lines
122 B
JavaScript
Raw Normal View History

2018-12-21 19:05:24 +05:30
export class HomeServerError extends Error {
constructor(body) {
super(body.error);
this.errcode = body.errcode;
}
}