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

pl.jalokim.utils.iteration.IterationException Maven / Gradle / Ivy

package pl.jalokim.utils.iteration;

/**
 * Wrapper exception for thrown exception from ExceptionableConsumer and ExceptionableRunnable.
 */
public class IterationException extends RuntimeException {
    private static final long serialVersionUID = 1L;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy