View Javadoc

1   package net.sf.jldapbeans.lang;
2   
3   public class LdapClassException extends JLdapBeansException {
4   
5   	public LdapClassException() {
6   		super();
7   	}
8   	
9   	public LdapClassException(String msg) {
10  		super(msg);
11  	}
12  	
13  	public LdapClassException(String msg, Throwable t) {
14  		super(msg, t);
15  	}
16  	
17  	public LdapClassException(Throwable t) {
18  		super(t);
19  	}
20  	
21  }