I have a BookFlight button, when I click on it, it will invoke the actionPerformed method. This method does not throw any exceptions. But in this method, I have to invoke the criteriaFind method which throws exceptions! how do I get around this?
Bal Sharma
Ranch Hand
Joined: Sep 19, 2001
Posts: 273
posted
0
Hey Hung: Is there any problem to use try and catch block in your actionPerformed method? Use criteriaFind method inside try block. I think you would be able to handle exception whatever it is inside catch block. -Bal