com.formkiq.server.service.FormNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of formkiq-server Show documentation
Show all versions of formkiq-server Show documentation
Server-side integration for the FormKiQ ios application
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;
}
}