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
author Pascal Knueppel
created at: 28.09.2019 - 15:19
the base exception of all scim errors
created at: 28.09.2019 - 15:19
the base exception of all scim errors
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiona map of http headers that should be included in the responsethe scim type for scim errors as defined in RFC7644 3.12.intThe 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
-
Field Details
-
status
protected int statusThe HTTP status code. -
scimType
the scim type for scim errors as defined in RFC7644 3.12. -
responseHeaders
a map of http headers that should be included in the response
-
-
Constructor Details
-
ScimException
-
ScimException
-
-
Method Details
-
getDetail
-
getStatus
public int getStatus()The HTTP status code. -
getScimType
the scim type for scim errors as defined in RFC7644 3.12. -
getResponseHeaders
a map of http headers that should be included in the response -
setStatus
public void setStatus(int status) The HTTP status code. -
setScimType
the scim type for scim errors as defined in RFC7644 3.12. -
setResponseHeaders
a map of http headers that should be included in the response
-