org.camunda.bpm.extension.keycloak.KeycloakGroupNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camunda-platform-7-keycloak Show documentation
Show all versions of camunda-platform-7-keycloak Show documentation
A Camunda 7 Identity Provider Plugin for Keycloak
package org.camunda.bpm.extension.keycloak;
/**
* Thrown in case a query for a unique group fails.
*/
public class KeycloakGroupNotFoundException extends Exception {
/** This class' serial version UID. */
private static final long serialVersionUID = 4368608195497046998L;
/**
* Creates a new KeycloakGroupNotFoundException.
* @param message the message
* @param cause the original cause
*/
public KeycloakGroupNotFoundException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy