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

ru.tinkoff.kora.resilient.timeout.simple.SimpleTimeouterUtils Maven / Gradle / Ivy

There is a newer version: 0.13.7
Show newest version
package ru.tinkoff.kora.resilient.timeout.simple;

public final class SimpleTimeouterUtils {

    private SimpleTimeouterUtils() {}

    public static void doThrow(Throwable e) {
        SimpleTimeouterUtils.doThrow0(e);
    }

    @SuppressWarnings("unchecked")
    private static  void doThrow0(Throwable e) throws E {
        throw (E) e;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy