Catch second line

This commit is contained in:
Danny McCormick 2019-07-11 09:38:51 -04:00
parent 7b43127c86
commit ce5b3ed3dc

6
.github/java.json vendored
View file

@ -5,9 +5,13 @@
"pattern": [ "pattern": [
{ {
"regexp": "^Exception in thread \"(.*)\" (.*): (.*)$", "regexp": "^Exception in thread \"(.*)\" (.*): (.*)$",
"file": 1,
"code": 2, "code": 2,
"message": 3 "message": 3
},
{
"regexp": "^\\s*at .*\\((.*):(\\d*)\\)$",
"message": 1,
"line": 2
} }
] ]
} }