General exception for errors raised during the process of a template.
692693694695696697698699
*/ public String formatISO(final Calendar target) { try { return DateUtils.formatISO(target); } catch (final Exception e) { throw new TemplateProcessingException("Error formatting calendar as ISO8601", e); } }