bitronix.tm.utils.PropertyException Maven / Gradle / Ivy
package bitronix.tm.utils;
/**
* Thrown by {@link PropertyUtils} when some reflection error occurs.
*
*
* @author lorban
*/
public class PropertyException extends RuntimeException {
public PropertyException(String message, Throwable cause) {
super(message, cause);
}
public PropertyException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy