Catch more exceptions in getting configs for DebugReports

This commit is contained in:
Vankka 2024-06-22 11:56:24 +03:00
parent 7fc39b1d53
commit 7ec2fe877c
No known key found for this signature in database
GPG Key ID: 62E48025ED4E7EBB

View File

@ -217,7 +217,7 @@ public class DebugReport {
manager.save(loader); manager.save(loader);
return new TextDebugFile(order, fileName, writer.toString()); return new TextDebugFile(order, fileName, writer.toString());
} catch (IOException | ConfigException e) { } catch (Exception e) {
return exception(order, fileName, e); return exception(order, fileName, e);
} }
} }