source: trip-planner-front/node_modules/rxjs/_esm2015/internal/util/TimeoutError.js@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 390 bytes
Line 
1const TimeoutErrorImpl = (() => {
2 function TimeoutErrorImpl() {
3 Error.call(this);
4 this.message = 'Timeout has occurred';
5 this.name = 'TimeoutError';
6 return this;
7 }
8 TimeoutErrorImpl.prototype = Object.create(Error.prototype);
9 return TimeoutErrorImpl;
10})();
11export const TimeoutError = TimeoutErrorImpl;
12//# sourceMappingURL=TimeoutError.js.map
Note: See TracBrowser for help on using the repository browser.