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

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

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

public class ReflectionException extends RuntimeException {
	private static final long serialVersionUID = 1421565945736042586L;

	public ReflectionException() {
		super();
	}

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy