Class ScimException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- de.captaingoldfish.scim.sdk.common.exceptions.ScimException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
BadRequestException,ConflictException,DocumentValidationException,ForbiddenException,IncompatibleAttributeException,InternalServerException,InvalidConfigException,InvalidDateTimeRepresentationException,InvalidFilterException,InvalidResourceTypeException,InvalidSchemaException,IOException,NotImplementedException,NotModifiedException,PreconditionFailedException,ResourceNotFoundException,ResponseException,UnauthenticatedException,UnknownValueException
public abstract class ScimException extends RuntimeException
author Pascal Knueppel
created at: 28.09.2019 - 15:19
the base exception of all scim errors- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDetail()Map<String,String>getResponseHeaders()a map of http headers that should be included in the responseStringgetScimType()the scim type for scim errors as defined in RFC7644 3.12.intgetStatus()The HTTP status code.voidsetResponseHeaders(Map<String,String> responseHeaders)a map of http headers that should be included in the responsevoidsetScimType(String scimType)the scim type for scim errors as defined in RFC7644 3.12.voidsetStatus(int status)The HTTP status code.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Method Detail
-
getDetail
public String getDetail()
-
getStatus
public int getStatus()
The HTTP status code.
-
getScimType
public String getScimType()
the scim type for scim errors as defined in RFC7644 3.12.
-
getResponseHeaders
public Map<String,String> getResponseHeaders()
a map of http headers that should be included in the response
-
setStatus
public void setStatus(int status)
The HTTP status code.
-
setScimType
public void setScimType(String scimType)
the scim type for scim errors as defined in RFC7644 3.12.
-
-