30033004300530063007300830093010
if(t instanceof OutOfMemoryError) { ThreadLocalPageContext.getConfig().checkPermGenSpace(true); } //Throwable cause = t.getCause(); //if(cause!=null && cause!=t) return toPageException(cause); return new NativeException(t); } }
131415161718192021
public final class WriteOutput implements Function { public static boolean call(PageContext pc , String string) throws PageException { try { pc.forceWrite(string); } catch (IOException e) { throw new NativeException(e); } return true; }
132133134135136137138139140141
"\n************************************************************************************\n", pc.getConfig().getResourceCharset(), true); } catch (IOException e) { throw new NativeException(e); } return ""; }