what does mean "error: unreported exception FileNotFoundException; must be caught or declared to be thrown" | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
0

what does mean "error: unreported exception FileNotFoundException; must be caught or declared to be thrown"

17th Jul 2016, 1:36 PM
hersonification
2 Antworten
+ 2
using buffer classes to input cause i/o errors during runtime if you're using bufferedreader to input, you have to either add 'throws IOException' after the function signature or put the part of the function, where you're taking input under 'try{}' block and 'catch' exception after that
17th Jul 2016, 4:47 PM
Athul Krishna K P
0
caught then handle. if you have to code to catch errors you throw the OS will raise an exception resulting in your program terminating unusually.
22nd Jul 2016, 4:23 AM
Eric Gitangu
Eric Gitangu - avatar