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

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

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

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

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

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