//页面打印错误
String errorMsg = "";
try {
FormBean returnFB = this.getTriangleServiceDelegation().getTriangleService().deleteFactoryManager(parameterFB);
errorMsg = returnFB.getCellBeanValue("errorMsg");
} catch (Exception e) {
e.printStackTrace();
errorMsg = e.getMessage();
} finally{
AlertMessagePOJO alertMessagePOJO = new AlertMessagePOJO(errorMsg, AlertMessagePOJO.TYPE_ERROR);
if (StringUtils.isBlank(errorMsg)) {
alertMessagePOJO = new AlertMessagePOJO(TriangleUIHelper.getMessageResources(request, TriangleUIHelper.getMulKeyPrefixAlert()+"deleteTriangleAttributeSuccess"), AlertMessagePOJO.TYPE_INFO);
}
request.getSession().setAttribute(TriangleDefinition.SESSION_ATTRIBUTE_KEY_ALERT_MESSAGE, alertMessagePOJO);
}