You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gcube-cms-suite/cms-plugin-framework/src/main/java/org/gcube/application/cms/plugins/faults/StepException.java

24 lines
573 B
Java

package org.gcube.application.cms.plugins.faults;
public class StepException extends Exception {
public StepException() {
}
public StepException(String message) {
super(message);
}
public StepException(String message, Throwable cause) {
super(message, cause);
}
public StepException(Throwable cause) {
super(cause);
}
public StepException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}