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

com.github.maxbraun.jobprofiles.JobProfileException Maven / Gradle / Ivy

package com.github.maxbraun.jobprofiles;

public class JobProfileException extends RuntimeException {
    public JobProfileException() {
        super();
    }

    public JobProfileException(String message) {
        super(message);
    }

    public JobProfileException(String message, Throwable cause) {
        super(message, cause);
    }

    public JobProfileException(Throwable cause) {
        super(cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy