All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.jhipster.lite.project.infrastructure.secondary.ProjectZippingException Maven / Gradle / Ivy

There is a newer version: 1.22.0
Show newest version
package tech.jhipster.lite.project.infrastructure.secondary;

import tech.jhipster.lite.shared.error.domain.GeneratorException;

class ProjectZippingException extends GeneratorException {

  public ProjectZippingException(String message) {
    super(internalServerError(ProjectErrorKey.ZIPPING_ERROR).message(message));
  }

  public ProjectZippingException(Throwable cause) {
    super(internalServerError(ProjectErrorKey.ZIPPING_ERROR).message("Error creating zip file").cause(cause));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy