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

de.sekmi.histream.etl.UncheckedParseException Maven / Gradle / Ivy

The newest version!
package de.sekmi.histream.etl;

public class UncheckedParseException extends RuntimeException {
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	public UncheckedParseException(ParseException cause){
		super(cause);
	}
	
	@Override
	public ParseException getCause(){
		return (ParseException)super.getCause();
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy