Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ObjectUnsubscribedError.js 358B

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