source: trip-planner-front/node_modules/rxjs/_esm5/internal/util/EmptyError.js

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

initial commit

  • Property mode set to 100644
File size: 452 bytes
Line 
1/** PURE_IMPORTS_START PURE_IMPORTS_END */
2var EmptyErrorImpl = /*@__PURE__*/ (function () {
3 function EmptyErrorImpl() {
4 Error.call(this);
5 this.message = 'no elements in sequence';
6 this.name = 'EmptyError';
7 return this;
8 }
9 EmptyErrorImpl.prototype = /*@__PURE__*/ Object.create(Error.prototype);
10 return EmptyErrorImpl;
11})();
12export var EmptyError = EmptyErrorImpl;
13//# sourceMappingURL=EmptyError.js.map
Note: See TracBrowser for help on using the repository browser.