
org.pac4j.oidc.exceptions.OidcUnsupportedClientAuthMethodException Maven / Gradle / Ivy
package org.pac4j.oidc.exceptions;
/**
* Exception indicating that the requested client auth method for the token exchange
* is not supported.
*
* @author Mathias Loesch
* @since 6.0.0
*/
public class OidcUnsupportedClientAuthMethodException extends
OidcException {
/**
* Constructor for OidcUnsupportedClientAuthMethodException.
*
* @param message a {@link String} object
*/
public OidcUnsupportedClientAuthMethodException(String message) {
super(message);
}
/**
* Constructor for OidcUnsupportedClientAuthMethodException.
*
* @param t a {@link Throwable} object
*/
public OidcUnsupportedClientAuthMethodException(Throwable t) {
super(t);
}
/**
* Constructor for OidcUnsupportedClientAuthMethodException.
*
* @param message a {@link String} object
* @param t a {@link Throwable} object
*/
public OidcUnsupportedClientAuthMethodException(String message, Throwable t) {
super(message, t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy