@Override
public void jspError(String fname, int line, int column, String errMsg,
Exception ex) throws JasperException {
- throw new JasperException(fname + "(" + line + "," + column + ")"
- + " " + errMsg, ex);
+ throw new JasperException(fname + "(line: " + line + ", column: " +
+ column + ")" + " " + errMsg, ex);
}
/*
separated by commas. (kkolinko)
</update>
<add>
- <bug>50306</bug>: New StuckThreadDetectionValve to detect requests that take a
- long time to process, which might indicate that their processing threads are
- stuck. Based on a patch provided by TomLu. (slaurent)
+ <bug>50306</bug>: New StuckThreadDetectionValve to detect requests that
+ take a long time to process, which might indicate that their processing
+ threads are stuck. Based on a patch provided by TomLu. (slaurent)
</add>
</changelog>
</subsection>
</fix>
</changelog>
</subsection>
+ <subsection name="Jasper">
+ <changelog>
+ <add>
+ Label JSP/tag file line and column numbers when reporting errors since
+ it may not be immediately obvious what the numbers represent. (markt)
+ </add>
+ </changelog>
+ </subsection>
<subsection name="Web applications">
<changelog>
<update>