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

net.sf.juffrou.reflect.error.ReflectionException Maven / Gradle / Ivy

Go to download

Performant java bean access through property names. If you are serious about bean handling, this is for you.

There is a newer version: 2.1.9
Show newest version
package net.sf.juffrou.reflect.error;

public class ReflectionException extends AbstractRuntimeException {

	private static final long serialVersionUID = 1671718962449842289L;

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

	public ReflectionException(Throwable reason) {
		super(reason.getClass().getSimpleName(), reason);
	}

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy