πCheck vs Unchecked Exception
Describe about difference of check and unchecked exception
Check Exception is verified at run time so we will need to add throws
on method.
Example
For Unchecked Exception, developer is the person who verify it by using try-catch
or ignore verifying .
Example
Last updated