Project

General

Profile

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

    
4
        public CustomLDAPException(String message) {
5
            super(message);
6
        }
7

    
8
        public CustomLDAPException(String message, Throwable throwable) {
9
            super(message, throwable);
10
        }
11
}
(1-1/4)