de.otto.edison.jobs.repository.JobBlockedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of edison-jobs Show documentation
Show all versions of edison-jobs Show documentation
Jobs library of the edison-microservice project.
package de.otto.edison.jobs.repository;
public class JobBlockedException extends RuntimeException {
public JobBlockedException(String message) {
super(message);
}
}