Checked Exceptions Flashcards
Thrown when the clone() method is invoked on an object whose class does not implement a Cloneable interface.
CloneNotSupportedException
Thrown when an Input/Output operation fails (say because of an interrupted call.)
IOException
Thrown when end-of-file is reached unexpectedly, subclass of IOException
EOFException
Thrown when the runtime is not able to locate or open the given file; derived class of IOException.
FileNotFoundException
Thrown when a reflection operation fails; superclass of reflection related exceptions such as NoSuchMethodException and InvocationTargetException.
ReflectiveOperationException
Superclass of all unchecked exceptions.
RuntimeException
Thrown when a database access or related operations fail; superclass of database-related exceptions such as SerialException
SQLException
Thrown when the parsing fails (for example, while processing locale-sensitive information such as dates and times in the format class.)
ParseException