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

io.probedock.junitee.finder.FinderException Maven / Gradle / Ivy

Go to download

JUnit data utilities to manage data in a database when doing tests like API tests against an application in application server.

The newest version!
package io.probedock.junitee.finder;

/**
 * Dedicated exception for the finders
 * 
 * @author Laurent Prevost 
 */
public class FinderException extends Exception {
	public FinderException() {}

	public FinderException(String message) {
		super(message);
	}

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy