reduze exception info to message only

This commit is contained in:
afischerdev 2023-03-14 14:22:12 +01:00
parent fbc01c0ba9
commit 3d31b8284c

View file

@ -187,6 +187,8 @@ public final class NodesCache {
ghostWakeup += segment.getDataSize();
}
return segment;
} catch (IOException re) {
throw new RuntimeException(re.getMessage());
} catch (RuntimeException re) {
throw re;
} catch (Exception e) {