From 757387b46c136e974b861064c99d35dd4799277a Mon Sep 17 00:00:00 2001 From: Keith Armstrong Date: Tue, 31 Dec 2024 16:15:45 -0500 Subject: [PATCH] Changed Exception to IOException --- src/com/belkast/soap/fileProcessor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/belkast/soap/fileProcessor.java b/src/com/belkast/soap/fileProcessor.java index 42dabef..6f81cb6 100644 --- a/src/com/belkast/soap/fileProcessor.java +++ b/src/com/belkast/soap/fileProcessor.java @@ -5,7 +5,7 @@ import java.util.*; public class fileProcessor { - public static String readFirstLine(String thisFile) throws Exception { + public static String readFirstLine(String thisFile) throws IOException { File file = new File(thisFile); if (file.exists()) { FileReader fr = new FileReader(file);