tech.jhipster.lite.module.infrastructure.secondary.javadependency.maven.InvalidPomException Maven / Gradle / Ivy
package tech.jhipster.lite.module.infrastructure.secondary.javadependency.maven;
import tech.jhipster.lite.shared.error.domain.GeneratorException;
class InvalidPomException extends GeneratorException {
public InvalidPomException() {
super(
badRequest(MavenDependencyErrorKey.INVALID_POM).message(
"Your pom.xml file is invalid, you have to define, at least, an artifact id for your project"
)
);
}
}