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

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

package com.bazaarvoice.ostrich.exceptions;

/**
 * An exception thrown when all available end points have been marked as bad.
 */
public class OnlyBadHostsException extends DiscoveryException {
    private static final long serialVersionUID = 0;

    public OnlyBadHostsException() {
        super();
    }

    public OnlyBadHostsException(String message) {
        super(message);
    }

    public OnlyBadHostsException(String message, Throwable cause) {
        super(message, cause);
    }

    public OnlyBadHostsException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy