de.captaingoldfish.scim.sdk.client.exceptions.IORuntimeException Maven / Gradle / Ivy
package de.captaingoldfish.scim.sdk.client.exceptions;
/**
* author Pascal Knueppel
* created at: 09.12.2019 - 15:26
*
* to wrap any {@link java.io.IOException} wihtin a runtime exception
*/
public class IORuntimeException extends RuntimeException
{
public IORuntimeException(String message, Throwable cause)
{
super(message, cause);
}
}