There are many exceptions, but they can be put into two groups: checked exceptions and unchecked exceptions. There is some controversy about which type you should use. A discussion of some of the issues can be found at Java theory and practice: The exceptions debate.
NullPointerException
or ArrayIndexOutOfBoundsException.
If you do, there is something wrong with your program, and you
need to fix it. You usually don't catch unchecked exceptions.
Instead, fix your program so it can't produce one of these.
However, NumberFormatException is the one exception of this type
that is usually caught.
try statement.
Probably most of your student programming has been "Happy Trails" style, where you didn't have to worry much about handling errors. But error handling is really a big deal in most real programs, and exceptions play a central role in dealing with errors.
All experienced programmers agree that using exceptions for normal processing flow is wrong. Exceptions should only be used only for errors or unusual conditions, and the equivalent if tests should be used for normal processing