Merge pull request #14443 from rmuir/trappy_exc

Fix auto-generated eclipse try/catch to be less trappy
This commit is contained in:
Robert Muir 2015-11-02 14:19:39 -05:00
commit debfb84d38
6 changed files with 6 additions and 6 deletions

File diff suppressed because one or more lines are too long

View File

@ -355,7 +355,7 @@ public class ObjectMapper extends Mapper implements AllFieldMapper.IncludeInAll,
try {
clone = (ObjectMapper) super.clone();
} catch (CloneNotSupportedException e) {
throw new RuntimeException();
throw new RuntimeException(e);
}
return clone;
}

View File

@ -70,7 +70,7 @@ public class NativeNaiveTFIDFScoreScript extends AbstractSearchScript {
score += indexFieldTerm.tf() * indexField.docCount() / indexFieldTerm.df();
}
} catch (IOException e) {
throw new RuntimeException();
throw new RuntimeException(e);
}
}
return score;

View File

@ -43,7 +43,7 @@ public class CountDownTests extends ESTestCase {
try {
latch.await();
} catch (InterruptedException e) {
throw new RuntimeException();
throw new RuntimeException(e);
}
while (true) {
if(frequently()) {

View File

@ -214,7 +214,7 @@ public class NettyHttpServerPipeliningTests extends ESTestCase {
Thread.sleep(timeout);
} catch (InterruptedException e1) {
Thread.currentThread().interrupt();
throw new RuntimeException();
throw new RuntimeException(e1);
}
}

View File

@ -112,7 +112,7 @@ public class KeyedLockTests extends ESTestCase {
try {
startLatch.await();
} catch (InterruptedException e) {
throw new RuntimeException();
throw new RuntimeException(e);
}
int numRuns = scaledRandomIntBetween(5000, 50000);
for (int i = 0; i < numRuns; i++) {