net.sf.juffrou.reflect.error.BeanInstanceBuilderException 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 BeanInstanceBuilderException extends Exception {
private static final long serialVersionUID = -3799453881689346682L;
public BeanInstanceBuilderException(Throwable cause) {
super(cause);
}
public BeanInstanceBuilderException(String message, Throwable cause) {
super(message, cause);
}
}