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
package com.tngtech.keycloakmock.api;
import javax.annotation.Nonnull;
public class MockServerException extends RuntimeException {
public MockServerException(@Nonnull final String message, @Nonnull final Throwable cause) {
super(message, cause);
}
}