com.coveo.saml.SamlException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of saml-client Show documentation
Show all versions of saml-client Show documentation
Dead simple client for obtaining authentication from SAML identity provider
package com.coveo.saml;
public class SamlException extends Exception {
public SamlException(String message) {
super(message);
}
public SamlException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy