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

com.tngtech.jgiven.impl.util.ResourceUtil Maven / Gradle / Ivy

The newest version!
package com.tngtech.jgiven.impl.util;

import java.io.Closeable;

import com.google.common.base.Throwables;

public class ResourceUtil {
    public static void close(Closeable... closeables) {
        Exception t = null;
        for (Closeable c : closeables) {
            try {
                if (c != null) {
                    c.close();
                }
            } catch (Exception e) {
                t = e;
            }
        }
        if (t != null) {
            throw new RuntimeException(t);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy