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

EmptyError.js 452B

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