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

tech.grasshopper.pdf.exception.PdfReportException Maven / Gradle / Ivy

There is a newer version: 2.14.0
Show newest version
package tech.grasshopper.pdf.exception;

public class PdfReportException extends RuntimeException {

	private static final long serialVersionUID = 1L;

	public PdfReportException() {
		super();
	}

	public PdfReportException(String message) {
		super(message);
	}

	public PdfReportException(String message, Throwable cause) {
		super(message, cause);
	}

	public PdfReportException(Throwable cause) {
		super(cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy