ObjectUnsubscribedError.js 358 B

123456789
  1. function ObjectUnsubscribedErrorImpl() {
  2. Error.call(this);
  3. this.message = 'object unsubscribed';
  4. this.name = 'ObjectUnsubscribedError';
  5. return this;
  6. }
  7. ObjectUnsubscribedErrorImpl.prototype = Object.create(Error.prototype);
  8. export const ObjectUnsubscribedError = ObjectUnsubscribedErrorImpl;
  9. //# sourceMappingURL=ObjectUnsubscribedError.js.map