JobOptionsValidateException.java 1.46 KB
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.pdfg.exception;

import com.adobe.pdfg.exception.ConfigException;
import com.adobe.pdfg.exception.ErrorCode;

public class JobOptionsValidateException
extends ConfigException {
    static final long serialVersionUID = 1014;

    public JobOptionsValidateException() {
        super(ErrorCode.JobOptionsValidateExceptionMessage);
    }

    public JobOptionsValidateException(String msg) {
        super(msg);
    }

    public JobOptionsValidateException(String msg, Exception e) {
        super(msg, (Throwable)e);
    }

    public JobOptionsValidateException(Exception e) {
        super(e);
    }

    public JobOptionsValidateException(int errorCode) {
        super(errorCode);
    }

    public JobOptionsValidateException(int errorCode, Object arg) {
        super(errorCode, arg);
    }

    public JobOptionsValidateException(int errorCode, Object arg1, Object arg2) {
        super(errorCode, arg1, arg2);
    }

    public JobOptionsValidateException(int errorCode, Object arg1, Object arg2, Object arg3) {
        super(errorCode, new Object[]{arg1, arg2, arg3});
    }

    public JobOptionsValidateException(int errorCode, Exception e) {
        super(errorCode, (Throwable)e);
    }

    public JobOptionsValidateException(int errorCode, Object[] params) {
        super(errorCode, params);
    }

    public JobOptionsValidateException(String key, String value) {
        super(ErrorCode.InvalidJobOption, key, value);
    }
}