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

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

package com.bazaarvoice.ostrich.exceptions;

/**
 * A general exception thrown when execution callback {@link com.bazaarvoice.ostrich.ServiceCallback}
 * for an endpoint failed.
 * See {@link com.bazaarvoice.ostrich.exceptions} package for more specific exceptions.
 */
public class ServiceException extends RuntimeException {
    private static final long serialVersionUID = 0;

    public ServiceException() {
        super();
    }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy