We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12eea14 commit a25f7dfCopy full SHA for a25f7df
tests/test-javalin/src/main/java/org/example/myapp/Main.java
@@ -40,7 +40,7 @@ public static Javalin start(int port) {
40
41
app.exception(ValidationException.class, (exception, ctx) -> {
42
43
- Map<String,Object> map = new LinkedHashMap<>();
+ Map<String, Object> map = new LinkedHashMap<>();
44
map.put("message", exception.getMessage());
45
map.put("errors", exception.getErrors());
46
ctx.json(map);
0 commit comments