capint
6/4/2016 - 2:17 PM

Java >> Runtime exception VS Checked exception

Java >> Runtime exception VS Checked exception

If a client can reasonably be expected to recover from an exception, make it a checked exception. If a client cannot do anything to recover from the exception, make it an unchecked exception.
https://docs.oracle.com/javase/tutorial/essential/exceptions/runtime.html