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

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

There is a newer version: 0.6.1
Show newest version
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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy