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

io.soffa.foundation.errors.RetryException Maven / Gradle / Ivy

package io.soffa.foundation.errors;

public class RetryException extends FunctionalException {

    private static final long serialVersionUID = 1L;

    public RetryException(String message, Object... args) {
        super(message, args);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy