net.sf.juffrou.reflect.error.ReflectionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of juffrou-reflect Show documentation
Show all versions of juffrou-reflect Show documentation
Performant java bean access through property names. If you are serious about bean handling, this is for you.
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);
}
}