com.bazaarvoice.ostrich.exceptions.MaxRetriesException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ostrich-core Show documentation
Show all versions of ostrich-core Show documentation
Core classes that form Ostrich
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);
}
}