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

hu.akarnokd.rxjava2.util.SneakyThrows Maven / Gradle / Ivy

There is a newer version: 0.20.10
Show newest version
package hu.akarnokd.rxjava2.util;

/**
 * Utility class to throw arbitrary Throwables.
 */
public final class SneakyThrows {

    private SneakyThrows() {
        throw new IllegalStateException("No instances!");
    }

    @SuppressWarnings("unchecked")
    public static  E justThrow(Throwable error) throws E {
        throw (E)error;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy