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

com.formkiq.server.service.FormNotFoundException Maven / Gradle / Ivy

There is a newer version: 0.6.1
Show newest version
package com.formkiq.server.service;

/**
 * FormNotFoundException.
 *
 */
public class FormNotFoundException extends RuntimeException {

    /** SerialVersionUID. */
	private static final long serialVersionUID = 5315390271570745578L;

	/** Missing Form. */
	private String form;

	/**
	 * constructor.
	 * @param missingForm String
	 */
	public FormNotFoundException(final String missingForm) {
		super();
		this.form = missingForm;
	}

	/**
	 * @return {@link String}
	 */
	public String getForm() {
		return this.form;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy