Do something like below-
<action ...>
<result name="error">path_to_error.jsp</result>
</action>
public void execute(ActionInvocation invocation) throws Exception {
try {
// Some operations
} catch (Exception e) {
//Send user to a error page
return "error";
}
}
Vinod
-------- Original Message --------
Subject: Handling exceptions in a custom result
From: Juan Damasceno <[EMAIL PROTECTED]>
To: user@struts.apache.org <user@struts.apache.org>
Date: Tuesday, August 07, 2007 4:56:41 PM
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?
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]