ConfigSettingNotFoundException.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 ConfigSettingNotFoundException
extends ConfigException {
    static final long serialVersionUID = 1008;

    public ConfigSettingNotFoundException() {
        super(ErrorCode.ConfigSettingNotFoundExceptionMessage);
    }

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

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

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

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

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

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

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