eu.unicore.ucc.UCCException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ucc-core Show documentation
Show all versions of ucc-core Show documentation
UNICORE Commandline Client
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);
}
}