Class EFhirClientException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.hl7.fhir.dstu3.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

  • Method Details

    • getServerErrors

      Method returns all OperationOutcome server errors that are associated with this exception.
      Returns:
    • hasServerErrors

      public boolean hasServerErrors()
      Method returns true if exception contains server OperationOutcome errors in payload.
      Returns: