de.gold.scim.common.exceptions.InternalServerException Maven / Gradle / Ivy
The newest version!
package de.gold.scim.common.exceptions;
import de.gold.scim.common.constants.HttpStatus;
import lombok.Builder;
/**
* author Pascal Knueppel
* created at: 28.09.2019 - 17:14
*
*/
public class InternalServerException extends ScimException
{
@Builder
public InternalServerException(String message, Throwable cause, String scimType)
{
super(message, cause, HttpStatus.INTERNAL_SERVER_ERROR, scimType);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy