github-pages-deploy-action/node_modules/rxjs/_esm2015/internal/util/EmptyError.js

12 lines
377 B
JavaScript
Raw Normal View History

2020-03-07 11:45:40 +08:00
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