de.captaingoldfish.scim.sdk.client.exceptions.KeyStoreEntryException Maven / Gradle / Ivy
package de.captaingoldfish.scim.sdk.client.exceptions;
/**
* author Pascal Knueppel
* created at: 09.12.2019 - 15:26
*
* This Exception will be thrown if an entry could not be added to a keystore
*/
public class KeyStoreEntryException extends RuntimeException
{
public KeyStoreEntryException(String message)
{
super(message);
}
}