Manipulando InterruptedException em Java
Qual é a diferença entre as seguintes formas de manuseio InterruptedException? Qual é a melhor maneira de fazer isso? try{ //... } catch(InterruptedException e) { Thread.currentThread().interrupt(); } OU try{ //... } catch(InterruptedException e) { throw new RuntimeException(e); } EDIT:...