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

com.github.paganini2008.devtools.reflection.ReflectionException Maven / Gradle / Ivy

There is a newer version: 2.0.5
Show newest version
package com.github.paganini2008.devtools.reflection;

/**
 * 
 * ReflectionException
 * 
 * @author Fred Feng
 * @revised 2019-05
 * @created 2012-01
 * @version 1.0
 */
public class ReflectionException extends RuntimeException {

	private static final long serialVersionUID = 7883319961125053816L;

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

	public ReflectionException(String msg, Throwable e) {
		super(msg, e);
	}

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy