
com.tngtech.keycloakmock.api.MockServerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mock Show documentation
Show all versions of mock Show documentation
Base module of keycloak-mock
The newest version!
package com.tngtech.keycloakmock.api;
import javax.annotation.Nonnull;
/** Runtime exception which is thrown when starting or stopping the mock fails */
public class MockServerException extends RuntimeException {
MockServerException(@Nonnull final String message, @Nonnull final Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy