com.github.jhonnymertz.wkhtmltopdf.wrapper.exceptions.PDFGenerationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-wkhtmltopdf-wrapper Show documentation
Show all versions of java-wkhtmltopdf-wrapper Show documentation
A Java based wrapper for the wkhtmltopdf command line tool. As the name implies, it uses WebKit to
convert HTML documents to PDFs.
package com.github.jhonnymertz.wkhtmltopdf.wrapper.exceptions;
/**
* Exception to describe and track pdf generation process errors
*/
public class PDFGenerationException extends RuntimeException {
/**
* Instantiates a new Pdf timeout exception when future process errors happens
*
* @param e the original exception
*/
public PDFGenerationException(final Exception e) {
super(e);
}
}