com.bazaarvoice.ostrich.exceptions.MaxRetriesException Maven / Gradle / Ivy
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 - 2025 Weber Informatics LLC | Privacy Policy