Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
try {
statement_<%=cid%>.execute();
} catch(Exception e) {
<%
if (("true").equals(dieOnError)) {
%>
throw(e);
<%
} else {
%>
System.err.print(e.getMessage());
<%
}
%>
}
String dieOnError = ElementParameterParser.getValue(node, "__DIE_ON_ERROR__");