ConfigSettingsExistException.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 ConfigSettingsExistException
extends ConfigStoreException {
    static final long serialVersionUID = 1009;

    public ConfigSettingsExistException() {
        super(ErrorCode.ConfigSettingsExistExceptionMessage);
    }

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

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

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

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

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

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

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

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