An autoclosable that doesn't throw an exception
| 114 | * An autoclosable that doesn't throw an exception |
| 115 | */ |
| 116 | public interface ExceptionlessAutoClosable extends AutoCloseable { |
| 117 | @Override |
| 118 | void close(); |
| 119 | } |
| 120 | |
| 121 | static public class Errors { |
| 122 | List<Pair<Throwable, Object>> errors = new ArrayList<>(); |
no outgoing calls
no test coverage detected