in src/main/java/com/epam/eco/commons/concurrent/ResourceSemaphores.java [132:138]
public boolean awaitUnchecked(long timeout, TimeUnit unit) {
try {
return await(timeout, unit);
} catch (InterruptedException ie) {
throw new RuntimeException(ie);
}
}