com.github.jhonnymertz.wkhtmltopdf.wrapper.exceptions.WrapperConfigException 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;
/**
* The type Wrapper config exception.
*/
public class WrapperConfigException extends RuntimeException {
/**
* Instantiates a new Wrapper config exception.
*
* @param s the s
* @param t the t
*/
public WrapperConfigException(final String s, final Throwable t) {
super(s, t);
}
}