59606162636465666768
InputStream is = null; try { is = new GZIPInputStream(new FileInputStream( getCanonicalFile(index, false))); } catch (Exception e) { throw new ObjectLoadException("Failed to read entity: " + index, e); } return is; }
114115116117118119120121122
")", e); } } return new DiskObject(index, f, new File(parent, fileName)); } catch (Exception e) { throw new ObjectLoadException("Failed to build canonical disk " + "object for index/key: " + index, e); } }
248249250251252253254255256
} catch (LockConflictException e) { throw e; } catch (ObjectNotFoundException e) { throw e; } catch (Exception e) { throw new ObjectLoadException("Failed to load hashed file " + "object (id=" + repo.getRepoId() + ", key=" + key + ")", e); } }