tech.jhipster.lite.module.domain.properties.InvalidProjectBaseNameException Maven / Gradle / Ivy
package tech.jhipster.lite.module.domain.properties;
import tech.jhipster.lite.shared.error.domain.GeneratorException;
class InvalidProjectBaseNameException extends GeneratorException {
public InvalidProjectBaseNameException() {
super(
badRequest(PropertiesErrorKey.INVALID_BASE_NAME).message(
"Project names can't have special characters, only letters (no accents) and numbers allowed"
)
);
}
}