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

org.directwebremoting.jsonp.JsonpCallException Maven / Gradle / Ivy

package org.directwebremoting.jsonp;

/**
 * Called when a JSON request is not formatted properly
 * @author Joe Walker [joe at getahead dot ltd dot uk]
 */
public class JsonpCallException extends RuntimeException
{
    /**
     * All JsonCallExceptions must have a reason
     * @param reason ...
     */
    public JsonpCallException(String reason)
    {
        super(reason);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy