Package dovetaildb.servlet

Examples of dovetaildb.servlet.HttpReturnThrowable


  /**
   * Terminates the current request, sending the given status code, headers, and
   * content.  This method never returns.
   */
  public static void httpReturn(int status, List<String> headers, String content) {
    throw new HttpReturnThrowable(status, headers, content);
  }
View Full Code Here

TOP

Related Classes of dovetaildb.servlet.HttpReturnThrowable

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.