ConfigCreateObjectException.java 1.17 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 ConfigCreateObjectException
extends ConfigStoreException {
    static final long serialVersionUID = 1001;

    public ConfigCreateObjectException() {
        super(ErrorCode.ConfigCreateObjectExceptionMessage);
    }

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

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

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

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

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

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

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

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