In many cases, it would be useful to close and not throw an exception.
Either the Exception can be quietly ignored, or the method could return the Exception, allowing the caller to ignore it, log it, or rethrow it.
This kind of method would allow the cleanup of many places in the JDK that go to extra lengths to handle/ignore the exception from close.
For example,
+ /**
+ * Closes the Closable and returns the exception if one occurs.
+ *
+ * @param closeable the closable to close
+ * @return {@code null} if the close succeeded without throwing an exception.
+ * otherwise returns the IOException
+ */
+ public default IOException closeQuietly() {
+ try {
+ closeable.close();
+ } catch (IOException ie) {
+ return ie;
+ }
+ return null;
+ }
Either the Exception can be quietly ignored, or the method could return the Exception, allowing the caller to ignore it, log it, or rethrow it.
This kind of method would allow the cleanup of many places in the JDK that go to extra lengths to handle/ignore the exception from close.
For example,
+ /**
+ * Closes the Closable and returns the exception if one occurs.
+ *
+ * @param closeable the closable to close
+ * @return {@code null} if the close succeeded without throwing an exception.
+ * otherwise returns the IOException
+ */
+ public default IOException closeQuietly() {
+ try {
+ closeable.close();
+ } catch (IOException ie) {
+ return ie;
+ }
+ return null;
+ }
- relates to
-
JDK-8066869 Add Closeable::closeUnchecked that is the equivalent of close but throws UncheckedIOException
-
- Resolved
-