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

org.mapfish.print.output.AttributeParsingException Maven / Gradle / Ivy

There is a newer version: 3.22.0
Show newest version
package org.mapfish.print.output;

/**
 * An exception that is thrown if an unexpected error occurs while parsing attributes into the Values object.
 *
 * @see Values#populateFromAttributes(org.mapfish.print.config.Template, java.util.Map,
 *         org.mapfish.print.wrapper.PObject)
 */
public final class AttributeParsingException extends RuntimeException {

    /**
     * Constructor.
     *
     * @param errorMsg the message with debug info.
     * @param cause the exception that was thrown.
     */
    public AttributeParsingException(final String errorMsg, final Throwable cause) {
        super(errorMsg, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy