[JAVA] Item 70: Use checked exceptions for recoverable conditions and runtime exceptions for programming errors

70. A programming error using a checked exception in a recoverable situation? Use run-time exceptions for

Recommended Posts

Item 70: Use checked exceptions for recoverable conditions and runtime exceptions for programming errors
Effective Java Use checked exceptions for recoverable states and run-time exceptions for programming errors
Item 69: Use exceptions only for exceptional conditions
Item 71: Avoid unnecessary use of checked exceptions
Item 59: Know and use the libraries