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