net.nemerosa.ontrack.job.support.JobNotScheduledException 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 JobNotScheduledException extends BaseException {
public JobNotScheduledException(JobKey key) {
super("Job with key %s is not scheduled.", key);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy