Hi folks, I have recently upgraded from jboss 4.0.0RC1 to 4.0.2 and I noticed a strange (well, strange for me) behaviour in exception handling.
please have a look at the following code, it's a struts action:
public ActionForward execute(....)
{
//.......
ibsd.saveUserPassword(....);
//......
}
catch (InvalidPasswordException ipe)
{
ipe.printStackTrace();
}catch(Exception e)
{
p.printStackTrace();
}Hi, tremalnaik!
I am experiencing the same behavior as you. Have you found any solution to this problem?
/Henrik