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

org.keycloak.common.profile.ProfileException Maven / Gradle / Ivy

There is a newer version: 26.0.3
Show newest version
package org.keycloak.common.profile;

public class ProfileException extends RuntimeException {

    public ProfileException(String message) {
        super(message);
    }

    public ProfileException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy