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

com.bazaarvoice.ostrich.exceptions.NoSuitableHostsException Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy