Package org.apache.pivot.web

Examples of org.apache.pivot.web.QueryException


     * <tt>false</tt>, otherwise.
     *
     * @throws QueryException
     */
    protected boolean doPut(Path path, Object value) throws QueryException {
        throw new QueryException(Query.Status.METHOD_NOT_ALLOWED);
    }
View Full Code Here


     * @param path
     *
     * @throws QueryException
     */
    protected void doDelete(Path path) throws QueryException {
        throw new QueryException(Query.Status.METHOD_NOT_ALLOWED);
    }
View Full Code Here

TOP

Related Classes of org.apache.pivot.web.QueryException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.