org.mapfish.print.servlet.job.NoSuchReferenceException 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.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