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

com.composum.sling.core.concurrent.JobFailureException Maven / Gradle / Ivy

There is a newer version: 4.3.4
Show newest version
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