2
0
Fork 0

Made unittest data backend for frontends and improved swing frontend.

Worked on metamodel backend and some other fixes.
This commit is contained in:
Willem Cazander 2012-05-03 17:13:36 +02:00
parent 1c308a684a
commit a25e98f5d5
65 changed files with 2820 additions and 499 deletions

View file

@ -56,7 +56,11 @@ public class LdapConnectionProviderImpl implements LdapConnectionProvider {
}
return lc;
} catch (Exception e) {
throw new RuntimeException(e);
if (bindUser!=null && bindPass!=null) {
throw new RuntimeException("Connect as: "+bindUser+" pass: "+bindPass+" message: "+e.getMessage(),e);
} else {
throw new RuntimeException(e);
}
}
}