From 1d6d563a878a991438cc3ed8005834e172f48330 Mon Sep 17 00:00:00 2001 From: Steve Loughran Date: Mon, 23 Apr 2007 11:00:52 +0000 Subject: [PATCH] don't drop the underlying cause when thing can't be read git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@531427 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/types/FilterSet.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/org/apache/tools/ant/types/FilterSet.java b/src/main/org/apache/tools/ant/types/FilterSet.java index 35a2142ef..002e0f04c 100644 --- a/src/main/org/apache/tools/ant/types/FilterSet.java +++ b/src/main/org/apache/tools/ant/types/FilterSet.java @@ -370,7 +370,7 @@ public class FilterSet extends DataType implements Cloneable { } } catch (Exception ex) { throw new BuildException("Could not read filters from file: " - + filtersFile); + + filtersFile,ex); } finally { FileUtils.close(in); }