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

tech.jhipster.lite.module.infrastructure.primary.InvalidProjectFolderException Maven / Gradle / Ivy

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

import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;
import tech.jhipster.lite.shared.error.domain.GeneratorException;

@ResponseStatus(value = HttpStatus.BAD_REQUEST)
class InvalidProjectFolderException extends GeneratorException {

  public InvalidProjectFolderException() {
    super(badRequest(ProjectFolderErrorKey.INVALID_FOLDER).message("Project folder is not valid"));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy