> I need to do something like:
>
> public void execute(ActionInvocation invocation) throws
> Exception {
> try {
> // Some operations
> } catch (Exception e) {
> //Send user to a error page
> }
> }
>
> Any idea?You could write an interceptor that manages exception handling. Cheers, Thorsten --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

