This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/rxjs/_esm2015/internal/util/TimeoutError.js

9 lines
293 B
JavaScript
Raw Normal View History

2019-08-11 18:48:02 +00:00
function TimeoutErrorImpl() {
Error.call(this);
this.message = 'Timeout has occurred';
this.name = 'TimeoutError';
return this;
}
TimeoutErrorImpl.prototype = Object.create(Error.prototype);
export const TimeoutError = TimeoutErrorImpl;
//# sourceMappingURL=TimeoutError.js.map