Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

TimeoutError.js 390B

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