From ece2e70ad5276fc4c9615492630e07c9e4433f75 Mon Sep 17 00:00:00 2001 From: Oliver Spohngellert Date: Fri, 19 Feb 2016 11:23:47 -0500 Subject: [PATCH] Updated error message --- .../modules/fileextmismatch/FileExtMismatchIngestModule.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/modules/fileextmismatch/FileExtMismatchIngestModule.java b/Core/src/org/sleuthkit/autopsy/modules/fileextmismatch/FileExtMismatchIngestModule.java index 2825a16eb9..c579c69014 100644 --- a/Core/src/org/sleuthkit/autopsy/modules/fileextmismatch/FileExtMismatchIngestModule.java +++ b/Core/src/org/sleuthkit/autopsy/modules/fileextmismatch/FileExtMismatchIngestModule.java @@ -95,7 +95,7 @@ public class FileExtMismatchIngestModule implements FileIngestModule { try { this.detector = new FileTypeDetector(); } catch (FileTypeDetector.FileTypeDetectorInitException ex) { - throw new IngestModuleException("Could not create file detector.", ex); + throw new IngestModuleException("Could not create file type detector.", ex); } }