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

com.regnosys.rosetta.translate.IngestException Maven / Gradle / Ivy

There is a newer version: 11.25.1
Show newest version
package com.regnosys.rosetta.translate;

public class IngestException extends RuntimeException {

	private static final long serialVersionUID = 8333656788342752472L;

	public IngestException(Exception e) {
		super(e);
	}
	
	public IngestException(String s, Throwable e) {
		super(s, e);
	}
	
	public IngestException(String s) {
		super(s);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy