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

org.mapfish.print.PrintException Maven / Gradle / Ivy

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