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

org.mapfish.print.servlet.job.NoSuchReferenceException Maven / Gradle / Ivy

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

/**
 * Exception thrown for invalid job references.
 */
public class NoSuchReferenceException extends Exception {

    private static final long serialVersionUID = 6066917028707184891L;

    /**
     * Constructor.
     *
     * @param referenceId the reference id
     */
    public NoSuchReferenceException(final String referenceId) {
        super("invalid reference '" + referenceId + "'");
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy