All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.dongliu.commons.exception.ReflectException Maven / Gradle / Ivy

There is a newer version: 12.0.2
Show newest version
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