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.

TimeoutError.js 293B

123456789
  1. function TimeoutErrorImpl() {
  2. Error.call(this);
  3. this.message = 'Timeout has occurred';
  4. this.name = 'TimeoutError';
  5. return this;
  6. }
  7. TimeoutErrorImpl.prototype = Object.create(Error.prototype);
  8. export const TimeoutError = TimeoutErrorImpl;
  9. //# sourceMappingURL=TimeoutError.js.map