View Javadoc

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