Unchecked Exception
-
Checked and Unchecked ExceptionsStaticPL/JAVA 2019. 8. 23. 17:30
1. Overview Let's distribute Java exceptions into two main categories: checked exceptions and unchecked exceptions. 2. Description 2.1 Checked Exceptions Represent errors outside the control of the program. Such as IOException, SQLException, and ParseException. Exception is the superclass of these Exceptions The constructor of FileInputStream throws FileNotFoundException if the input file does n..