Smile CDR v2024.05.PRE
On this page:

38.2.1Exceptions

 

Within your Hybrid Provider and CDS Hooks code, it is a good practice to throw only exceptions that are subclasses of the HAPI FHIR BaseServerResponseException. The HAPI FHIR documentation provides a complete list of available exceptions on this page.

38.2.1.1Trusted Error Messages

If you have enabled the Suppress Error Details property on your endpoint, any messages passed to the exception will be logged to the System Logs but will not be returned to the client.

You can specify that an error message is safe to be returned to the client even when Suppress Error Details is enabled by using the setErrorMessageTrusted(boolean) property. In the example below, the message supplied to the exception constructor will be returned to the client even if Suppress Error Details is set.

InternalErrorException exception = new InternalErrorException("Database could not be reached");
exception.setErrorMessageTrusted(true);
throw e;