Should class IOException in Java have been an unchecked RuntimeException?
- by Derek Mahar
Do you agree that the designers of Java class java.io.IOException should have made it an unchecked run-time exception derived from java.lang.RuntimeException instead of a checked exception derived only from java.lang.Exception?
I think that class IOException should have been an unchecked exception because there is little that an application can do…