mirror of https://github.com/apache/ant-ivy
Slightly changed error message
git-svn-id: https://svn.apache.org/repos/asf/ant/ivy/core/trunk@691785 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cfa7c5e3bb
commit
cb10f84acb
|
|
@ -271,10 +271,10 @@ public class IvyAntSettings extends DataType {
|
|||
ivyEngine = ivy;
|
||||
} catch (ParseException e) {
|
||||
throw new BuildException("impossible to configure ivy:settings with given "
|
||||
+ (file != null ? "file: " + file : "url :" + url) + " :" + e, e);
|
||||
+ (file != null ? "file: " + file : "url: " + url) + " : " + e, e);
|
||||
} catch (IOException e) {
|
||||
throw new BuildException("impossible to configure ivy:settings with given "
|
||||
+ (file != null ? "file: " + file : "url :" + url) + " :" + e, e);
|
||||
+ (file != null ? "file: " + file : "url: " + url) + " : " + e, e);
|
||||
} finally {
|
||||
ivy.getLoggerEngine().popLogger();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue