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

pl.jalokim.utils.reflection.ReflectionOperationException Maven / Gradle / Ivy

package pl.jalokim.utils.reflection;

/**
 * Exception which can be thrown during invoke operations on reflection API.
 * Mostly this is wrapper for exception throw by native java reflection API.
 */
public class ReflectionOperationException extends RuntimeException {

    private static final long serialVersionUID = 1L;

    public ReflectionOperationException(Throwable cause) {
        super(cause);
    }

    public ReflectionOperationException(String message) {
        super(message);
    }

    public ReflectionOperationException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy