All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.tika.exception.TikaPdfTimeoutException Maven / Gradle / Ivy

Go to download

This is the core Apache Tika™ toolkit library from which all other modules inherit functionality. It also includes the core facades for the Tika API.

There is a newer version: 1.0.18
Show newest version
package org.apache.tika.exception;

/**
 * Tika pdf timeout exception when pdfbox timeout on parsing pdf.
 * 
 * @author zhangkun
 *
 */
public class TikaPdfTimeoutException extends TikaException {
    /**
     * Creates an instance of exception
     * @param msg message
     */
    public TikaPdfTimeoutException(String msg) {
        super(msg);
    }

    public TikaPdfTimeoutException(String msg, Throwable cause) {
        super(msg, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy