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

TimeoutError.js 466B

1234567891011121314
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var TimeoutErrorImpl = (function () {
  4. function TimeoutErrorImpl() {
  5. Error.call(this);
  6. this.message = 'Timeout has occurred';
  7. this.name = 'TimeoutError';
  8. return this;
  9. }
  10. TimeoutErrorImpl.prototype = Object.create(Error.prototype);
  11. return TimeoutErrorImpl;
  12. })();
  13. exports.TimeoutError = TimeoutErrorImpl;
  14. //# sourceMappingURL=TimeoutError.js.map