1be188ecf5141aa2ba5b8e2ba52f191f81ef173913fe69bb12b3053a41ca2f834fd1fec7088ae188fd7c1eaa79e20e2f4b0ce24cf9c6915f878256aceba5fa 465 B

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