This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
why does it give ... undeclared exception e.......error?
I added some UBB code here. -Mapraputa [This message has been edited by Mapraputa Is (edited October 19, 2000).]
Surya Bahadur
Ranch Hand
Joined: Sep 28, 2000
Posts: 88
posted
0
Hi You need to say that your method throws exception if you are throwing that exception in your code,so change the method signature to private void test() throws MalformedURLException,EOFException Then your code would compile,or comment out the throw statement in the catch block. Surya