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.

UnsubscriptionError.js 570B

123456789101112
  1. /** PURE_IMPORTS_START PURE_IMPORTS_END */
  2. function UnsubscriptionErrorImpl(errors) {
  3. Error.call(this);
  4. this.message = errors ?
  5. errors.length + " errors occurred during unsubscription:\n" + errors.map(function (err, i) { return i + 1 + ") " + err.toString(); }).join('\n ') : '';
  6. this.name = 'UnsubscriptionError';
  7. this.errors = errors;
  8. return this;
  9. }
  10. UnsubscriptionErrorImpl.prototype = /*@__PURE__*/ Object.create(Error.prototype);
  11. export var UnsubscriptionError = UnsubscriptionErrorImpl;
  12. //# sourceMappingURL=UnsubscriptionError.js.map