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

org.test4j.exception.Test4JException Maven / Gradle / Ivy

There is a newer version: 2.7.0
Show newest version
package org.test4j.exception;

public class Test4JException extends RuntimeException {
	private static final long serialVersionUID = -5975690696261330680L;

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

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

	public Test4JException(String error, Throwable throwable) {
		super(error, throwable);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy