com.formkiq.server.service.PreconditionFailedException 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;
/**
* Prescondition Failed Exception.
* Return Html Code Status 412
*
*/
public class PreconditionFailedException extends RuntimeException {
/** SerialVersionUID. */
private static final long serialVersionUID = -8862435779989697472L;
/**
* constructor.
* @param message String
*/
public PreconditionFailedException(final String message) {
super(message);
}
}