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

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

public class ConfigParseException
extends ConfigLoadException {
    static final long serialVersionUID = 1006;

    public ConfigParseException() {
        super(ErrorCode.ConfigParseExceptionMessage);
    }

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

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

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

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

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

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

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

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