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

com.github.ltsopensource.core.exception.JobSubmitException Maven / Gradle / Ivy

package com.github.ltsopensource.core.exception;

/**
 * @author Robert HG ([email protected]) on 5/12/15.
 */
public class JobSubmitException extends RuntimeException {

	private static final long serialVersionUID = 8375498515729588730L;

	public JobSubmitException() {
        super();
    }

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

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy