org.apache.tika.exception.TikaPdfTimeoutException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tika-core Show documentation
Show all versions of tika-core Show documentation
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.
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);
}
}