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