net.nemerosa.ontrack.job.support.JobSchedulerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontrack-job Show documentation
Show all versions of ontrack-job Show documentation
Abstract management of identified jobs.
package net.nemerosa.ontrack.job.support;
import net.nemerosa.ontrack.common.BaseException;
import net.nemerosa.ontrack.job.JobKey;
public class JobSchedulerException extends BaseException {
public JobSchedulerException(Exception ex, JobKey key) {
super(ex, "Cannot schedule job: %s", key);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy