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

net.yetamine.lang.closeables.SafeCloseable Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
package net.yetamine.lang.closeables;

/**
 * An extension of {@link AutoCloseable} that throws no checked exceptions.
 *
 * 

* Implementations of this interface should avoid throwing any exceptions if * possible. Invoking this method on a closed instance should have no effect. */ public interface SafeCloseable extends AutoCloseable { /** * @see java.lang.AutoCloseable#close() */ void close(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy