Suppresses the given exception ({@code suppressed}) which was thrown when attempting to close the given closeable. {@code thrown} is the exception that is actually being thrown from the method. Implementations of this method should not throw under any circumstances.
(Closeable closeable, Throwable thrown, Throwable suppressed)
| 226 | * method. Implementations of this method should not throw under any circumstances. |
| 227 | */ |
| 228 | void suppress(Closeable closeable, Throwable thrown, Throwable suppressed); |
| 229 | } |
| 230 | |
| 231 | /** |
no outgoing calls
no test coverage detected