private void checkJournalStorageFormatted() throws JournalNotFormattedException { if (!journalStorage.isFormatted()) { String msg = "Journal edits: " + journalStorage.getSingularStorageDir() + " not formatted"; LOG.error(msg); throw new JournalNotFormattedException(msg); } }
private void checkImageStorageFormatted() throws JournalNotFormattedException { if (!imageStorage.isFormatted()) { String msg = "Journal image: " + imageStorage.getSingularStorageDir() + " not formatted"; LOG.error(msg); throw new JournalNotFormattedException(msg); } }
private void checkFormatted() throws JournalNotFormattedException { if (!isFormatted()) { throw new JournalNotFormattedException("Journal " + storage.getSingularStorageDir() + " not formatted"); } }