com.antkorwin.pdfinder.PdfFindInternalException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pdfinder Show documentation
Show all versions of pdfinder Show documentation
Find text position in PDF files
package com.antkorwin.pdfinder;
/**
* @author Korovin Anatoliy
*/
public class PdfFindInternalException extends RuntimeException {
public PdfFindInternalException(String message) {
super(message);
}
public PdfFindInternalException(Throwable cause) {
super(cause);
}
}