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:
Maarten Coene 2008-09-03 21:31:50 +00:00
parent cfa7c5e3bb
commit cb10f84acb
1 changed files with 2 additions and 2 deletions

View File

@ -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();
}