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

pro.jk.ejoker.infrastructure.InfrastructureRuntimeException Maven / Gradle / Ivy

package pro.jk.ejoker.infrastructure;

public class InfrastructureRuntimeException extends RuntimeException {

	private static final long serialVersionUID = 6189272934620408965L;

	public InfrastructureRuntimeException(String msg){
		super(msg);
	}

	public InfrastructureRuntimeException(String msg, Exception e){
		super(msg, e);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy