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

fi.evolver.azure.entraid.EntraIdAssertionException Maven / Gradle / Ivy

The newest version!
package fi.evolver.azure.entraid;

/**
 * This exception is thrown when failed to create Microsoft Entra ID jwt
 * assertion.
 *
 * @author Rujun Chen
 * @since 2022-02-23
 */
public class EntraIdAssertionException extends Exception {

	private static final long serialVersionUID = 1L;

	/**
	 * Creates a {@code EntraIdAssertionException} with the specified detail message
	 * and cause.
	 *
	 * @param message the detail message (which is saved for later retrieval by the
	 *                {@link #getMessage()} method).
	 * @param cause   the cause (which is saved for later retrieval by the
	 *                {@link #getCause()} method). (A {@code
	 * null}       value is permitted, and indicates that the cause is
	 *                nonexistent or unknown.)
	 * @since 2022-02-23
	 */
	public EntraIdAssertionException(String message, Throwable cause) {
		super(message, cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy