On Sunday 27 July 2003 01:11 pm, Mike Steigerwald Steiger-at-UMich.edu 
|jakarta| wrote:
> I guess I need a code review. Can anyone see what might be wrong with the
> snippet below? It does not seem to catch an exception generated when the

Ok, I'll try...

> <c:if test="${exception != null}">
> Sorry. Processing could not be performed because...
> </c:if>

I guess null is not a valid EL literal. Try this:

<c:if test="${not empty exception}">
Sorry. Processing could not be performed because...
</c:if>


Felipe

 

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to