3
0
mirror of https://github.com/Qortal/qortal.git synced 2025-02-11 17:55:50 +00:00

Throw exception and break out of loop if archive rebuilding fails

This commit is contained in:
CalDescent 2023-03-06 14:40:17 +00:00
parent b6803490b9
commit 96ac883515

View File

@ -106,6 +106,7 @@ public class BlockArchiveRebuilder {
} catch (IOException | TransformationException e) {
LOGGER.info("Caught exception when rebuilding block archive", e);
throw new DataException("Unable to rebuild block archive");
}
}