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;
public class MockServerException extends RuntimeException {
public MockServerException(String message, Throwable cause) {
super(message, cause);
}
}