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

net.tokensmith.parser.exception.ReflectException Maven / Gradle / Ivy

The newest version!
package net.tokensmith.parser.exception;

public class ReflectException extends Exception {
    private String className;

    public ReflectException(String message, Throwable cause, String className) {
        super(message, cause);
        this.className = className;
    }

    public String getClassName() {
        return className;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy