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

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

package com.formkiq.server.service;

/**
 * Checked Exception for SaveAction.
 *
 */
public class SaveActionException extends Exception {

    /**
     *
     */
    private static final long serialVersionUID = -8818774184396453483L;

    /**
     * Constructs a new exception with the specified detail message.  The
     * cause is not initialized, and may subsequently be initialized by
     * a call to {@link #initCause}.
     *
     * @param   message   the detail message. The detail message is saved for
     *          later retrieval by the {@link #getMessage()} method.
     */
    public SaveActionException(final String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy