ru.tinkoff.kora.resilient.timeout.simple.SimpleTimeouterUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resilient-timeout Show documentation
Show all versions of resilient-timeout Show documentation
Kora resilient-timeout module
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;
}
}