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