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