com.msl.pdfier.pdfua.gen.exception.PdfUAGenerationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pdfier-gen-flying-saucer-pdfua Show documentation
Show all versions of pdfier-gen-flying-saucer-pdfua Show documentation
PDFA Generator based on custom fork of Flying saucer to support PDF/UA (org.msl.xhtmlrenderer)
package com.msl.pdfier.pdfua.gen.exception;
public class PdfUAGenerationException extends Exception {
private static final long serialVersionUID = -2033349219617163882L;
public PdfUAGenerationException() {
}
public PdfUAGenerationException(String message) {
super(message);
}
public PdfUAGenerationException(Throwable cause) {
super(cause);
}
public PdfUAGenerationException(String message, Throwable cause) {
super(message, cause);
}
public PdfUAGenerationException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy