org.exparity.beans.BeanPropertyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of exparity-bean Show documentation
Show all versions of exparity-bean Show documentation
A Java library of bean utilities for manipulating and inspecting Java classes implementing the Java Beans standard
package org.exparity.beans;
/**
* @author Stewart Bissett
*/
public class BeanPropertyException extends RuntimeException {
private static final long serialVersionUID = 787620207455033419L;
public BeanPropertyException(final String message) {
super(message);
}
public BeanPropertyException(final String message, final Throwable cause) {
super(message, cause);
}
}