Java tutorial
//package com.java2s; public class Main { public static void sleep(long time) { try { Thread.currentThread(); Thread.sleep(time); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }