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

TimeoutError.js 465B

12345678910111213
  1. /** PURE_IMPORTS_START PURE_IMPORTS_END */
  2. var TimeoutErrorImpl = /*@__PURE__*/ (function () {
  3. function TimeoutErrorImpl() {
  4. Error.call(this);
  5. this.message = 'Timeout has occurred';
  6. this.name = 'TimeoutError';
  7. return this;
  8. }
  9. TimeoutErrorImpl.prototype = /*@__PURE__*/ Object.create(Error.prototype);
  10. return TimeoutErrorImpl;
  11. })();
  12. export var TimeoutError = TimeoutErrorImpl;
  13. //# sourceMappingURL=TimeoutError.js.map