| Author |
Exception Interceptor Throws Advice
|
nazzy khan
Ranch Hand
Joined: May 06, 2010
Posts: 39
|
|
Hi,
I have created a throws advice for my command bean (Login.java) for handling exception and logging when exception is thrown from my command.
Call
LoginAction -> Login command
Both action and command is defined in ApplicationContext.xml file as below
When an exception is thrown from my command, my interceptor class (com.xyz.ExceptionInterceptor.java) will be called. I'm throwing NullPointerException from command. I want the exact line of the command class from where exception is thrown.
ex.getClass().getName() prints only "java.lang.NullPointerException"but not the line no.
code below:
prints
Caught: java.lang.NullPointerException
Class: Login
Method: doExecute
How do I get the line no in ExceptionInterceptor class?
-nazzy
|
 |
nazzy khan
Ranch Hand
Joined: May 06, 2010
Posts: 39
|
|
Sorry my bad.. It was very easy.
I have not tried printStackTrace()
getMessage returned null.. then I thought printStackTrace() will also not work.
printStackTrace() returns the complete stack trace along with the line where exception is thrown.
Thanks
-nazzy
|
 |
 |
I agree. Here's the link: jrebel
|
|
subject: Exception Interceptor Throws Advice
|
|
|