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

com.github.ldeitos.exception.InvalidConfigurationException Maven / Gradle / Ivy

Go to download

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 InvalidConfigurationException extends RuntimeException {
	private static final long serialVersionUID = 1L;

	public InvalidConfigurationException(String msg){
		super(msg);
	}
	
	public InvalidConfigurationException(String msg, Throwable t){
		super(msg, t);
	}

	public static void throwNew(String msg){
		throw new InvalidConfigurationException(msg);
	}
	
	public static void throwNew(String msg, Throwable t){
		throw new InvalidConfigurationException(msg, t);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy