
org.openpdf.renderer.PDFErrorHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openpdf-renderer Show documentation
Show all versions of openpdf-renderer Show documentation
PDF renderer implementation supporting the subset of PDF 1.4 specification.
The newest version!
package org.openpdf.renderer;
/**
* Simple class to handle exceptions - as default we just print the stack trace
* but it's possible to inject another behaviour
* @author xond
*
*/
@Deprecated
public class PDFErrorHandler {
@Deprecated
public void publishException(Throwable e){
// TODO: use a logging framework.
//e.printStackTrace();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy