com.crabshue.commons.process.exceptions.ProcessExecutionException Maven / Gradle / Ivy
package com.crabshue.commons.process.exceptions;
import com.crabshue.commons.exceptions.AbstractException;
import com.crabshue.commons.exceptions.context.ErrorType;
public class ProcessExecutionException extends AbstractException {
    /**
     * @see AbstractException#AbstractException(ErrorType)
     */
    public ProcessExecutionException(final ErrorType errorType) {
        super(errorType);
    }
    /**
     * @see AbstractException#AbstractException(ErrorType, Throwable)
     */
    public ProcessExecutionException(final ErrorType errorType, final Throwable cause) {
        super(errorType, cause);
    }
    /**
     * @see AbstractException#AbstractException(ErrorType, String)
     */
    public ProcessExecutionException(final ErrorType errorType, final String message) {
        super(errorType, message);
    }
    /**
     * @see AbstractException#AbstractException(ErrorType, String, Throwable)
     */
    public ProcessExecutionException(final ErrorType errorType, final String message, final Throwable cause) {
        super(errorType, message, cause);
    }
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy