* Return a 200 OK text/plain response
* @param pattern The response content to be formatted (with String.format)
* @param args Args for String.format
*/
protected static void renderText(CharSequence pattern, Object... args) {
throw new RenderText(pattern == null ? "" : String.format(pattern.toString(), args));
}