The throws keyword is used in a method declaration to list the exceptions the method can throw Any exceptions a method can raise that are not subclasses of Error or RuntimeException must either be caught within the method or declared in the method's throws clause
A JavaTM programming language keyword used in method declarations that specify which exceptions are not handled within the method but rather passed to the next higher level of the program 1
FileNotFoundException, - IOException, ClassNotFoundException formattree1 obj is not found , Error reading form formatree1 obj, when the class of FileTree is not found
A Java(TM) programming language keyword used in method declarations that specify which exceptions are not handled within the method but rather passed to the next higher level of the program