plus.jdk.common.ValidateException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of validator-plus Show documentation
Show all versions of validator-plus Show documentation
A simple input parameter verification component
The newest version!
package plus.jdk.common;
public class ValidateException extends Exception {
public ValidateException(String message) {
super(message);
}
}