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

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

package org.mapfish.print.output;

/**
 * An exception that is thrown if an unexpected error occurs while parsing attributes into the Values object.
 *
 * @author Jesse on 9/25/2015.
 * @see Values#populateFromAttributes(org.mapfish.print.config.Template, org.mapfish.print.parser.MapfishParser, 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