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

net.dongliu.dbutils.exception.ReflectionException Maven / Gradle / Ivy

package net.dongliu.dbutils.exception;

import java.beans.IntrospectionException;

/**
 * Unchecked wrap for reflective exception
 *
 * @author Liu Dong
 */
public class ReflectionException extends RuntimeException {
    public ReflectionException(ReflectiveOperationException cause) {
        super(cause);
    }

    public ReflectionException(String msg) {
        super(msg);
    }

    public ReflectionException(IntrospectionException e) {
        super(e);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy