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

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

public class ImproperPDFSettingsException
extends ConfigStoreException {
    static final long serialVersionUID = 1011;

    public ImproperPDFSettingsException() {
        super(ErrorCode.ImproperPDFSettingsExceptionMessage);
    }

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

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

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

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

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

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

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

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