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

tech.jhipster.lite.module.infrastructure.secondary.javadependency.gradle.MissingGradleProfileException Maven / Gradle / Ivy

There is a newer version: 1.18.1
Show newest version
package tech.jhipster.lite.module.infrastructure.secondary.javadependency.gradle;

import tech.jhipster.lite.module.domain.javabuildprofile.BuildProfileId;
import tech.jhipster.lite.shared.error.domain.GeneratorException;

class MissingGradleProfileException extends GeneratorException {

  public MissingGradleProfileException(BuildProfileId profileId) {
    super(
      badRequest(GradleDependencyErrorKey.MISSING_PROFILE).message(
        "Your gradle project does not contain any profile-%s.gradle.kts precompiled script plugin".formatted(profileId)
      )
    );
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy