org.mapfish.print.PrintException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of print-lib Show documentation
Show all versions of print-lib Show documentation
Library for generating PDFs and images from online webmapping services
package org.mapfish.print;
/**
* Base exception for printing problems.
*/
public class PrintException extends RuntimeException {
private static final long serialVersionUID = 1L;
/**
* Construct exception.
*
* @param message the message
*/
public PrintException(final String message) {
super(message);
}
/**
* Constructor.
*
* @param message message
* @param cause the cause
*/
public PrintException(final String message, final Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy