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:
  • Field Details

    • status

      protected int status
      The HTTP status code.
    • scimType

      protected String scimType
      the scim type for scim errors as defined in RFC7644 3.12.
    • responseHeaders

      protected Map<String,String> responseHeaders
      a map of http headers that should be included in the response
  • Constructor Details

  • Method Details

    • 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.
    • setResponseHeaders

      public void setResponseHeaders(Map<String,String> responseHeaders)
      a map of http headers that should be included in the response