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

tech.grasshopper.combiner.exception.CombinerException Maven / Gradle / Ivy

The newest version!
package tech.grasshopper.combiner.exception;

public class CombinerException extends RuntimeException {

	public CombinerException() {
		super();
	}

	public CombinerException(String string) {
		super(string);
	}

	public CombinerException(Throwable throwable) {
		super(throwable);
	}

	public CombinerException(String string, Throwable throwable) {
		super(string, throwable);
	}

	private static final long serialVersionUID = -6211995537090274343L;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy