com.despegar.jdbc.galera.NoHostAvailableException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of galera-java-client Show documentation
Show all versions of galera-java-client Show documentation
A simple Java client for MariaDB Galera Cluster and Percona XtraDB Cluster. It is designed to be an
alternative to connect JVM app to
MariaDB/Percona galera nodes without HAProxy
package com.despegar.jdbc.galera;
import com.google.common.base.Joiner;
import javax.annotation.Nonnull;
import java.util.List;
public class NoHostAvailableException extends RuntimeException {
public NoHostAvailableException(@Nonnull List hosts){
super("Non of the following active hosts is available:" + Joiner.on(",").join(hosts));
}
}