From f3201f648e68e40ecb9adfbe9659de734fab870e Mon Sep 17 00:00:00 2001 From: "Christian P. MOMON" Date: Mon, 4 Jun 2018 10:50:51 +0200 Subject: [PATCH] Fixed throws exception. --- src/fr/devinsy/xml/XMLTools.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/fr/devinsy/xml/XMLTools.java b/src/fr/devinsy/xml/XMLTools.java index ded4744..cd42008 100644 --- a/src/fr/devinsy/xml/XMLTools.java +++ b/src/fr/devinsy/xml/XMLTools.java @@ -323,10 +323,11 @@ public class XMLTools * @param in * the in * @return the string + * @throws IOException * @throws Exception * the exception */ - public static String readTag(final BufferedReader in) throws Exception + public static String readTag(final BufferedReader in) throws IOException { String result;