com.bazaarvoice.ostrich.exceptions.NoSuitableHostsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ostrich-core Show documentation
Show all versions of ostrich-core Show documentation
Core classes that form Ostrich
package com.bazaarvoice.ostrich.exceptions;
/**
* An exception indicating a {@link com.bazaarvoice.ostrich.LoadBalanceAlgorithm} chose {@code null} rather than one of the
* provided end points.
*/
public class NoSuitableHostsException extends DiscoveryException {
private static final long serialVersionUID = 0;
public NoSuitableHostsException() {
super();
}
public NoSuitableHostsException(String message) {
super(message);
}
public NoSuitableHostsException(String message, Throwable cause) {
super(message, cause);
}
public NoSuitableHostsException(Throwable cause) {
super(cause);
}
}