We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00e659a commit c9706e5Copy full SHA for c9706e5
concoredocker.java
@@ -65,7 +65,7 @@ private static void defaultMaxTime(int defaultValue) {
65
try {
66
String content = new String(Files.readAllBytes(Paths.get(inpath + "1/concore.maxtime")));
67
maxtime = ((Number) literalEval(content)).intValue();
68
- } catch (Exception e) {
+ } catch (IOException | ClassCastException | NumberFormatException e) {
69
maxtime = defaultValue;
70
}
71
0 commit comments