Package com.github.restdriver.serverdriver.http.exception

Examples of com.github.restdriver.serverdriver.http.exception.RuntimeInterruptedException


   
    private void sleepSoundly(TimeDuration pollPeriod) {
        try {
            pollPeriod.getTimeUnit().sleep(pollPeriod.getDuration());
        } catch (InterruptedException ie) {
            throw new RuntimeInterruptedException("interrupted!", ie);
        }
    }
View Full Code Here

TOP

Related Classes of com.github.restdriver.serverdriver.http.exception.RuntimeInterruptedException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.