
com.composum.sling.core.concurrent.JobFailureException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of composum-nodes-commons Show documentation
Show all versions of composum-nodes-commons Show documentation
general components and objects to use the Sling API
package com.composum.sling.core.concurrent;
/**
* Can be used by a JobExecutor to indicate an error during execution of the job.
*/
public class JobFailureException extends RuntimeException {
public JobFailureException() {
}
public JobFailureException(String message) {
super(message);
}
public JobFailureException(String message, Throwable cause) {
super(message, cause);
}
public JobFailureException(Throwable cause) {
super(cause);
}
public JobFailureException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy