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

com.tngtech.keycloakmock.api.MockServerException Maven / Gradle / Ivy

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