PDFConfigurationException.java 559 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.internal.pdftoolkit.core.exceptions;

import com.adobe.internal.pdftoolkit.core.exceptions.PDFException;

public class PDFConfigurationException
extends PDFException {
    private static final long serialVersionUID = 1;

    public PDFConfigurationException(String message) {
        super(message);
    }

    public PDFConfigurationException(String message, Throwable cause) {
        super(message, cause);
    }

    public PDFConfigurationException(Throwable cause) {
        super(cause);
    }
}