Changed to the new exceptions.

This commit is contained in:
Ulrik Sandberg
2007-01-14 19:41:48 +00:00
parent 2fa080e5ba
commit cc938c24c5

View File

@@ -24,6 +24,10 @@ package org.springframework.ldap;
* @see javax.naming.NameNotFoundException
*/
public class NameNotFoundException extends NamingException {
public NameNotFoundException(String msg) {
super(msg);
}
public NameNotFoundException(javax.naming.NameNotFoundException cause) {
super(cause);