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

com.tidal.wave.exceptions.IterationStopper Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package com.tidal.wave.exceptions;

public class IterationStopper extends Exception {
    public IterationStopper(String message) {
        super(message);
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy