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

eu.unicore.ucc.UCCException Maven / Gradle / Ivy

The newest version!
package eu.unicore.ucc;

public class UCCException extends Exception {

	private static final long serialVersionUID = 1L;

	public UCCException(String message) {
		super(message);
	}

	public UCCException(String message, Throwable cause) {
		super(message, cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy