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

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

There is a newer version: 2.1.0
Show newest version
package com.bazaarvoice.ostrich.exceptions;

/**
 * An exception to be thrown when something has been tried unsuccessfully until a
 * {@link com.bazaarvoice.ostrich.RetryPolicy} no longer allows retries.
 */
public class MaxRetriesException extends ServiceException {
    private static final long serialVersionUID = 0;

    public MaxRetriesException() {
        super();
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy