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