Update UnpackagePortableCaseProgressDialog.java

Make message more clear that the case could not be opened after unpacking it.
This commit is contained in:
Mark McKinnon 2019-09-26 10:21:37 -04:00
parent 90d7f4673e
commit 6cb88943a7

View File

@ -194,7 +194,7 @@ class UnpackagePortableCaseProgressDialog extends javax.swing.JDialog implements
try { try {
Case.openAsCurrentCase(FilenameUtils.removeExtension(packagedCase) + File.separator + FilenameUtils.getBaseName(packagedCase) + ".aut"); // NON-NLS Case.openAsCurrentCase(FilenameUtils.removeExtension(packagedCase) + File.separator + FilenameUtils.getBaseName(packagedCase) + ".aut"); // NON-NLS
} catch (CaseActionException ex) { } catch (CaseActionException ex) {
throw new TskCoreException("Error opening case", ex); // NON-NLS throw new TskCoreException("Error opening case after unpacking it.", ex); // NON-NLS
} }
success.set(true); success.set(true);