diff -r be27ed110b50 -r d8ac696cc51f buildframework/helium/tools/common/java/src/com/nokia/ant/taskdefs/LDAP.java --- a/buildframework/helium/tools/common/java/src/com/nokia/ant/taskdefs/LDAP.java Wed Oct 28 14:39:48 2009 +0000 +++ b/buildframework/helium/tools/common/java/src/com/nokia/ant/taskdefs/LDAP.java Wed Dec 23 19:29:07 2009 +0200 @@ -35,6 +35,7 @@ private String filter; private String key; private String property; + public void execute() { @@ -72,7 +73,12 @@ } catch (NamingException exc) { - throw new BuildException(exc); + throw new BuildException(exc.getMessage()); + } + catch (NullPointerException e) + { + // As uer will not get affected due to this error not failing build. + log("Not able to retrive LDAP information for " + filter); } }