github-pages-deploy-action/node_modules/rxjs/_esm2015/internal/util/EmptyError.js
2020-03-06 22:45:40 -05:00

12 lines
377 B
JavaScript

const EmptyErrorImpl = (() => {
function EmptyErrorImpl() {
Error.call(this);
this.message = 'no elements in sequence';
this.name = 'EmptyError';
return this;
}
EmptyErrorImpl.prototype = Object.create(Error.prototype);
return EmptyErrorImpl;
})();
export const EmptyError = EmptyErrorImpl;
//# sourceMappingURL=EmptyError.js.map