All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mntviews.base.service.exception.JobSchedulerException Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy