import_process_fail.js 275 B

1234567891011121314151617
  1. export class import_process_fail {
  2. #product;
  3. #error;
  4. constructor(product, error) {
  5. this.#product = product;
  6. this.#error = error;
  7. }
  8. get error() {
  9. return this.#error;
  10. }
  11. get product() {
  12. return this.#product;
  13. }
  14. }