All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.vpro.util.SilentAutoCloseable Maven / Gradle / Ivy

There is a newer version: 5.3.1
Show newest version
package nl.vpro.util;

/**
 * Like {@link AutoCloseable}, but {@link #close()} doesn't throw.
 */
public interface SilentAutoCloseable extends AutoCloseable {

    @Override
    void close();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy