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

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

public class PDFRuntimeException
extends RuntimeException {
    private static final long serialVersionUID = 5130968669163679573L;

    private PDFRuntimeException() {
    }

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

    public PDFRuntimeException(PDFException ex) {
        super(ex);
    }

    public PDFRuntimeException(String message, Throwable ex) {
        super(message, ex);
    }
}