Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
import com.openhtmltopdf.util.XRLog;

import org.apache.pdfbox.pdmodel.PDDocument;

import java.io.IOException;
import java.io.OutputStream;
import java.util.logging.Level;

Expand All @@ -30,9 +32,9 @@ public PdfRendererBuilder() {
* Run the XHTML/XML to PDF conversion and output to an output stream set by
* toStream.
*
* @throws Exception
* @throws IOException
*/
public void run() throws Exception {
public void run() throws IOException {
PdfBoxRenderer renderer = null;
try {
renderer = this.buildPdfRenderer();
Expand Down