org.jobrunr.storage.JobNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jobrunr Show documentation
Show all versions of jobrunr Show documentation
An easy way to perform background processing on the JVM. Backed by persistent storage. Open and free for commercial use.
package org.jobrunr.storage;
import java.util.UUID;
public class JobNotFoundException extends StorageException {
public JobNotFoundException(UUID jobId) {
this(jobId.toString());
}
public JobNotFoundException(String jobId) {
super(String.format("Job with id %s does not exist", jobId));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy