de.captaingoldfish.scim.sdk.client.exceptions.SslContextCreationFailedException Maven / Gradle / Ivy
package de.captaingoldfish.scim.sdk.client.exceptions;
/**
* author Pascal Knueppel
* created at: 09.12.2019 - 15:26
*
* if the creation of a SSL context has failed within
* {@link de.captaingoldfish.scim.sdk.client.http.SSLContextHelper}
*/
public class SslContextCreationFailedException extends RuntimeException
{
public SslContextCreationFailedException(String message, Throwable cause)
{
super(message, cause);
}
public SslContextCreationFailedException(Throwable cause)
{
super(cause);
}
}