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

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

package com.bazaarvoice.ostrich.exceptions;

public abstract class DiscoveryException extends ServiceException {
    private static final long serialVersionUID = 0;

    protected DiscoveryException() {
        super();
    }

    protected DiscoveryException(String message) {
        super(message);
    }

    protected DiscoveryException(String message, Throwable cause) {
        super(message, cause);
    }

    protected DiscoveryException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy