private final ZipLibraryReader zipLibraryReader;
public ZipLibrary(String fileName) throws IncompatibleLibraryVersionException {
zipLibraryReader = new ZipLibraryReader(fileName);
if (ZipLibraries.versionNumber != zipLibraryReader.readVersionNumber()) {
throw new IncompatibleLibraryVersionException(
ZipLibraries.versionNumber, zipLibraryReader.readVersionNumber());
}
}