I'm trying to learn about exceptions in Java and, for educational purposes, it would be nice if I could get hold of a reference of all checked exceptions and all unchecked exceptions in the standard API.
Related question but not quite what I'm after.
Have a look at Direct Known Subclasses for
Exception
. All these exceptions (exceptRuntimeException
) are examples checked exceptions:and
RuntimeException
:These are the direct subclasses so this list is far from complete. The checked exception
IOException
has these subclasses: