130131132133134135136
} catch (IOException e) { throw new InvalidOperationException( "Can't open the specified file: '" + file + "'", e); } this.zipArchive = new ZipFileZipEntrySource(zipFile); }
99100101102103104105
ZipFile zipFile = ZipHelper.openZipFile(path); if (zipFile == null) throw new InvalidOperationException( "Can't open the specified file: '" + path + "'"); this.zipArchive = new ZipFileZipEntrySource(zipFile); }