Class EFhirClientException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.hl7.fhir.r5.utils.client.EFhirClientException
All Implemented Interfaces:
Serializable

FHIR client exception. FHIR API exception will be wrapped in FHIR client exceptions. OperationOutcome errors resulting from the server can be access by calling:

 if(e.hasServerErrors()) {
        List errors = e.getServerErrors();
  //process errors...
 }
 
Author:
Claude Nanjo
See Also:
  • Constructor Details

    • EFhirClientException

      public EFhirClientException(String message)
    • EFhirClientException

    • EFhirClientException

      public EFhirClientException(String message, Exception cause)
    • EFhirClientException

      public EFhirClientException(String message, OperationOutcome serverError)
      Generate EFhirClientException which include a message indicating the cause of the exception along with any OperationOutcome server error that may have resulted.
      Parameters:
      message -
      serverError -
    • EFhirClientException

      public EFhirClientException(String message, OperationOutcome serverError, Exception cause)
      Generate EFhirClientException which include a message indicating the cause of the exception along with any OperationOutcome server error that may have resulted.
      Parameters:
      message -
      serverError -
    • EFhirClientException

      Generate EFhirClientException indicating the cause of the exception along with any OperationOutcome server error the server may have generated. A default message of "One or more server side errors have occurred during this operation. Refer to e.getServerErrors() for additional details." will be returned to users.
      Parameters:
      serverError -
  • Method Details