[java] replace default catch block template (IDEA-161593)

`throw e` won't fix the compilation error, comment - is not really better than empty catch block.

GitOrigin-RevId: ea002c332900b032392e766f3dd13fe3258ad49c
This commit is contained in:
Anna Kozlova
2022-01-14 13:12:26 +01:00
committed by intellij-monorepo-bot
parent 12cce2b05b
commit 724ed16f6f
38 changed files with 41 additions and 41 deletions

View File

@@ -19,7 +19,7 @@ class Client {
try {
a.acting(s);
} catch (IOException e) {
e.printStackTrace();
throw new RuntimeException(e);
}
});
}