From 584c1bc59a5c0e0a836205ef5250dbd06b98f80f Mon Sep 17 00:00:00 2001 From: raman-bt Date: Fri, 21 Feb 2014 13:35:59 -0500 Subject: [PATCH] Fixed the access specifier on the exception constructor so it it actually be constructed (outside this pkg) --- Core/src/org/sleuthkit/autopsy/ingest/IngestModuleAbstract.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/ingest/IngestModuleAbstract.java b/Core/src/org/sleuthkit/autopsy/ingest/IngestModuleAbstract.java index fddb365e09..8ee8baea01 100644 --- a/Core/src/org/sleuthkit/autopsy/ingest/IngestModuleAbstract.java +++ b/Core/src/org/sleuthkit/autopsy/ingest/IngestModuleAbstract.java @@ -43,7 +43,7 @@ package org.sleuthkit.autopsy.ingest; }; public class IngestModuleException extends Exception { - IngestModuleException(String msg) { + public IngestModuleException(String msg) { super(msg); } }