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

uk.gov.ida.saml.security.exception.SamlFailedToDecryptException Maven / Gradle / Ivy

There is a newer version: 3.4.6-277
Show newest version
package uk.gov.ida.saml.security.exception;

import org.slf4j.event.Level;
import uk.gov.ida.saml.core.validation.SamlTransformationErrorException;
import uk.gov.ida.saml.core.validation.SamlValidationSpecificationFailure;

public class SamlFailedToDecryptException extends SamlTransformationErrorException {

    public SamlFailedToDecryptException(String errorMessage, Exception cause, Level logLevel) {
        super(errorMessage, cause, logLevel);
    }

    public SamlFailedToDecryptException(String errorMessage, Level logLevel) {
        super(errorMessage, logLevel);
    }

    public SamlFailedToDecryptException(SamlValidationSpecificationFailure failure, Exception cause) {
        super(failure.getErrorMessage(), cause, failure.getLogLevel());
    }

    public SamlFailedToDecryptException(SamlValidationSpecificationFailure failure) {
        super(failure.getErrorMessage(), null, failure.getLogLevel());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy