96979899100101102103104105106
break; case STATE_UNSTABLE: /* need file maintenance */ throw exception; default: throw new FilePersistenceException("unknow state " + fileState, exception); } } return filePersistence; }
156157158159160161162163
public EnumFileAccessMode getFileAccessMode() throws FilePersistenceException { try { return storeProperties.getFileAccessMode(); } catch (StoreException exception) { throw new FilePersistenceException(exception); } }