com.github.ldeitos.exception.InvalidPathConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of extendedValidation-core Show documentation
Show all versions of extendedValidation-core Show documentation
Extension for BeanValidation API Core. Content interfaces, qualifiers and constraints definitions.
This version is Java 17 and JakartaEE 10 compatible.
The newest version!
package com.github.ldeitos.exception;
public class InvalidPathConfigurationException extends RuntimeException {
private static final long serialVersionUID = 1L;
public InvalidPathConfigurationException(String msg){
super(msg);
}
public InvalidPathConfigurationException(String msg, Throwable t){
super(msg, t);
}
public static void throwNew(String msg){
throw new InvalidPathConfigurationException(msg);
}
public static void throwNew(String msg, Throwable t){
throw new InvalidPathConfigurationException(msg, t);
}
}