3839404142434445
*/ public static void sleep(long millis) { try { Thread.sleep(millis); } catch (InterruptedException e) { throw new UncheckedInterruptedException(e); } }