All Downloads are FREE. Search and download functionalities are using the official Maven repository.

prerna.util.ldap.LDAPPasswordChangeRequiredException Maven / Gradle / Ivy

The newest version!
package prerna.util.ldap;

public class LDAPPasswordChangeRequiredException extends RuntimeException {

	public LDAPPasswordChangeRequiredException() {
        super();
    }

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

    public LDAPPasswordChangeRequiredException(String message, Throwable cause) {
        super(message, cause);
    }

    public LDAPPasswordChangeRequiredException(Throwable cause) {
        super(cause);
    }

    protected LDAPPasswordChangeRequiredException(String message, Throwable cause,
                               boolean enableSuppression,
                               boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy