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

net.amygdalum.testrecorder.runtime.ComparisonException Maven / Gradle / Ivy

The newest version!
package net.amygdalum.testrecorder.runtime;

public class ComparisonException extends Exception {

	private boolean failed;

	public ComparisonException() {
		this(true);
	}

	public ComparisonException(boolean failed) {
		this.failed = failed;
	}

	public boolean failed() {
		return failed;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy