@@ -23,8 +23,12 @@ public class Try {
if (null != result) {
return result;
}
- Thread.sleep(500);
} catch (Exception e) {
+ throw new RuntimeException(e);
+ }
+ try {
+ Thread.sleep(500);
+ } catch (InterruptedException e) {
return null;