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

org.pac4j.saml.exceptions.SAMLAuthnContextClassRefException Maven / Gradle / Ivy

package org.pac4j.saml.exceptions;

/**
 * This is {@link SAMLAuthnContextClassRefException}.
 *
 * @author Misagh Moayyed
 * @since 5.0.0
 */
public class SAMLAuthnContextClassRefException extends SAMLException {
    private static final long serialVersionUID = 8635812340829541343L;

    public SAMLAuthnContextClassRefException(final String message) {
        super(message);
    }

    public SAMLAuthnContextClassRefException(final Throwable t) {
        super(t);
    }

    public SAMLAuthnContextClassRefException(final String message, final Throwable t) {
        super(message, t);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy