} catch (IOException ex2) {
ex2.printStackTrace();
String clientMessage = "服务器忙";
String location = "easyJ.http.servlet.RequestProcessor.forward(HttpServletRequest request,HttpServletResponse response)";
String logMessage = "转向目标" + returnPath + " 抛出IOException";
EasyJException ee = new EasyJException(ex2, location, logMessage,
clientMessage);
throw ee;
} catch (ServletException ex2) {
ex2.printStackTrace();
String clientMessage = "服务器忙";
String location = "easyJ.http.servlet.RequestProcessor.forward(HttpServletRequest request,HttpServletResponse response)";
String logMessage = "转向目标" + returnPath + " 抛出ServletException";
EasyJException ee = new EasyJException(ex2, location, logMessage,
clientMessage);
throw ee;
}
}