de.gold.scim.common.exceptions.IOException Maven / Gradle / Ivy
The newest version!
package de.gold.scim.common.exceptions;
import lombok.Builder;
/**
* author Pascal Knueppel
* created at: 28.09.2019 - 00:07
*
* a simple runtime IO exception
*/
public class IOException extends ScimException
{
@Builder
public IOException(String message, Throwable cause, int status, String scimType)
{
super(message, cause, status, scimType);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy