net.tokensmith.parser.exception.ReflectException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of parser Show documentation
Show all versions of parser Show documentation
Parses HTTP inputs to POJOs
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