ConfigLoadException.java 1.1 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 ConfigLoadException
extends ConfigException {
    static final long serialVersionUID = 1004;

    public ConfigLoadException() {
        super(ErrorCode.ConfigLoadExceptionMessage);
    }

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

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

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

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

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

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

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

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