01: package com.opensymphony.webwork.util.classloader.utils; 02: 03: public final class ThreadUtils { 04: 05: public static void sleep(final long pDelay) { 06: try { 07: Thread.sleep(pDelay); 08: } catch (final InterruptedException e) { 09: } 10: } 11: 12: }