Have each error in a separate line

This commit is contained in:
Grische
2022-03-13 14:41:11 +01:00
parent 69de40c246
commit c5d0e639b5

View File

@@ -54,7 +54,10 @@ public class Error {
IMAGE_WRONG_DIMENSION(26),
// internal error handling
NO_SPACE_LEFT_ON_DEVICE(100), ERROR_BAD_RESPONSE(101), PATH_INVALID(102), NO_WRITE_PERMISSION(103)
NO_SPACE_LEFT_ON_DEVICE(100),
ERROR_BAD_RESPONSE(101),
PATH_INVALID(102),
NO_WRITE_PERMISSION(103),
;
private final int id;
@@ -98,7 +101,10 @@ public class Error {
KEEPMEALIVE_STOP_RENDERING(400),
// internal error handling
ERROR_NO_ROOT(2), ERROR_BAD_RESPONSE(3), ERROR_REQUEST_FAILED(5);
ERROR_NO_ROOT(2),
ERROR_BAD_RESPONSE(3),
ERROR_REQUEST_FAILED(5),
;
private final int id;