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

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

There is a newer version: 12.0.2
Show newest version
package net.dongliu.commons.exception;

/**
 * Wrapper exception for ReflectiveOperationException
 */
public class UncheckedReflectException extends RuntimeException {

    private static final long serialVersionUID = -7538663995300473947L;

    public UncheckedReflectException(ReflectiveOperationException cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy