net.dongliu.commons.exception.ReflectException Maven / Gradle / Ivy
package net.dongliu.commons.exception;
import java.beans.IntrospectionException;
/**
* Thrown when reflect failed
*
* @author Liu Dong {@literal }
*/
public class ReflectException extends RuntimeException {
private static final long serialVersionUID = 424178282866620087L;
public ReflectException(ReflectiveOperationException cause) {
super(cause);
}
public ReflectException(IntrospectionException cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy