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

org.cloudfoundry.identity.uaa.mfa.exception.InvalidMfaCodeException Maven / Gradle / Ivy

package org.cloudfoundry.identity.uaa.mfa.exception;

import org.springframework.security.core.AuthenticationException;

public class InvalidMfaCodeException extends AuthenticationException {
    public InvalidMfaCodeException(String msg, Throwable t) {
        super(msg, t);
    }

    public InvalidMfaCodeException(String msg) {
        super(msg);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy