use of com.sequenceiq.freeipa.client.InvalidFreeIpaStateException in project cloudbreak by hortonworks.
the class FreeIpaClientFactory method createFreeIpaStateIsInvalidException.
private InvalidFreeIpaStateException createFreeIpaStateIsInvalidException(Status stackStatus) {
String message = String.format("Couldn't build FreeIPA client. Because FreeIPA is in invalid state: '%s'", stackStatus);
LOGGER.warn(message);
return new InvalidFreeIpaStateException(message, new FreeIpaHostNotAvailableException(message));
}
Aggregations