SettingIsDefaultException.java 742 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.pdfg.exception;

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

public class SettingIsDefaultException
extends ConfigStoreException {
    static final long serialVersionUID = 1007;

    public SettingIsDefaultException() {
        super(ErrorCode.SettingIsDefaultExceptionMessage);
    }

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

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

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

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