<% java.util.List strErrors = 
     (java.util.List)request.getAttribute( TryConstants.TRY_ERRORS );

   if( strErrors != null ) { %>

<ul>

<%   for( int errorIndex = 0; errorIndex < strErrors.size(); errorIndex++ ) {

       String strCurrentError = (String)strErrors.get( errorIndex ); %>

<li class="errorText"><%= strCurrentError %></li>

<%   } %>

</ul>

<% } %>
