All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.msl.pdfier.pdfua.gen.exception.PdfUAGenerationException Maven / Gradle / Ivy

Go to download

PDFA Generator based on custom fork of Flying saucer to support PDF/UA (org.msl.xhtmlrenderer)

There is a newer version: 9.1.20
Show newest version
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