if (e instanceof PersistenceException)
throw (PersistenceException) e;
/* Profile locked by another running instance */
if (e instanceof DatabaseFileLockedException)
throw new ProfileLockedException(e.getMessage(), e);
File file = new File(getDBFilePath());
/* Disk Full Error */
if (!file.exists())