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

de.cronn.testutils.TestUtilsRuntimeException Maven / Gradle / Ivy

The newest version!
package de.cronn.testutils;

public class TestUtilsRuntimeException extends RuntimeException {

	public TestUtilsRuntimeException() {
		super();
	}

	public TestUtilsRuntimeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
		super(message, cause, enableSuppression, writableStackTrace);
	}

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy