Java tutorial
//package com.java2s; public class Main { public static void sleep(long millisecs) { try { Thread.sleep(millisecs); } catch (InterruptedException e) { throw new RuntimeException(e); } } }