TimeoutError.js 293 B

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