package eu.dnetlib.openaire.user.utils;
public class CustomLDAPException extends Exception{

        public CustomLDAPException(String message) {
            super(message);
        }

        public CustomLDAPException(String message, Throwable throwable) {
            super(message, throwable);
        }
}
