*
* @Since 2.8.0
*/
public static OpcPackage load(final java.io.File docxFile, String password) throws Docx4JException {
PackageIdentifier name = new PackageIdentifierTransient(docxFile.getName());
try {
return OpcPackage.load(name, new FileInputStream(docxFile), password );
} catch (final FileNotFoundException e) {
OpcPackage.log.error(e.getMessage(), e);