com.mntviews.base.service.exception.JobSchedulerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mnt-base Show documentation
Show all versions of mnt-base Show documentation
Basis for mnt-bridge services
The newest version!
package com.mntviews.base.service.exception;
public class JobSchedulerException extends RuntimeException {
public JobSchedulerException() {
}
public JobSchedulerException(String s) {
super(s);
}
public JobSchedulerException(String s, Throwable throwable) {
super(s, throwable);
}
public JobSchedulerException(Throwable throwable) {
super(throwable);
}
}