de.mklinger.qetcher.client.impl.retry.RetryFailedGenericException Maven / Gradle / Ivy
package de.mklinger.qetcher.client.impl.retry;
/**
* @author Marc Klinger - mklinger[at]mklinger[dot]de
*/
public class RetryFailedGenericException extends RuntimeException implements RetryFailedException {
private static final long serialVersionUID = 1L;
public RetryFailedGenericException(final Throwable cause) {
super(cause);
}
}