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

blade.kit.exception.ReflectException Maven / Gradle / Ivy

package blade.kit.exception;

public class ReflectException extends RuntimeException{

	private static final long serialVersionUID = -3979699728217399193L;

	public ReflectException() {
		super();
	}
	
	public ReflectException(String msg) {
		super(msg);
	}
	
	public ReflectException(Throwable t) {
		super(t);
	}
	
	public ReflectException(String msg, Throwable t) {
		super(msg, t);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy