if (paths == 0) {
throw new ObjectNotInLowlevelStorageException("no path in db registry for ["
+ pid + "]");
}
if (paths > 1) {
throw new LowlevelStorageInconsistencyException("[" + pid
+ "] in db registry -multiple- times");
}
if (path == null || path.length() == 0) {
throw new LowlevelStorageInconsistencyException("[" + pid
+ "] has -null- path in db registry");
}
} catch (SQLException e1) {
throw new LowlevelStorageException(true, "sql failure (get)", e1);
} finally {