Odd Try / Catch behavior
Greetings:
When my command button's listener's event fires, I call the "isValidData" method.
private void isValidData() {
try {
} catch ( Exception e ) {
}
}
If I set a break point on the method declaration line and run the IDE (Eclipse) in debug mode execution stops as one would expect... However if I try to step into the method I can't move at all...
This first came to light when I had logic with in the try for writing to my database...
Any ideas why the execution halts? I have many Try / Catch blocks in my source but this one is a baffle to me...
Jim

