kz.greetgo.scheduling.NoPoolWithName Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greetgo.scheduling Show documentation
Show all versions of greetgo.scheduling Show documentation
Scheduler using in greetgo!
package kz.greetgo.scheduling;
public class NoPoolWithName extends RuntimeException {
public final String poolName;
public final Task task;
public NoPoolWithName(String poolName, Task task) {
super("No pool with name " + poolName + " for task " + task.infoForError());
this.poolName = poolName;
this.task = task;
}
}