mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-04 18:07:17 +00:00
Printing in exception.
This commit is contained in:
parent
49028bd27b
commit
e57f081c80
1 changed files with 7 additions and 2 deletions
|
@ -37,8 +37,13 @@ public class InvalidFilesException extends SnapshotPostException {
|
|||
@Override
|
||||
public void fromJSON(JsonElement json) {
|
||||
System.out.println(json);
|
||||
for (JsonElement error : json.getAsJsonObject().get("errors").getAsJsonArray()) {
|
||||
descriptionLines.add(describeError(error.getAsJsonObject()));
|
||||
try {
|
||||
|
||||
for (JsonElement error : json.getAsJsonObject().get("errors").getAsJsonArray()) {
|
||||
descriptionLines.add(describeError(error.getAsJsonObject()));
|
||||
}
|
||||
} catch (Throwable t) {
|
||||
t.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue