package at.knowcenter.wag.egov.egiz.ldap.client; /** * @author Thomas Knall */ public class LDAPException extends Exception { private static final long serialVersionUID = 1L; public LDAPException() { super(); } public LDAPException(Exception exception) { super(exception); } public LDAPException(String message, Exception exception) { super(message, exception); } public LDAPException(String message) { super(message); } }