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

com.sc.utils.reflect.ReflectException Maven / Gradle / Ivy

The newest version!

package com.sc.utils.reflect;

public class ReflectException extends RuntimeException {

    
    private static final long serialVersionUID = -6213149635297151442L;

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

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

    public ReflectException() {
        super();
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy