MINOR - PipelineServiceClientFactory exception handling (#20070)

* MINOR - PipelineServiceClientFactory exception handling

* Update PipelineServiceClientFactory.java
This commit is contained in:
Pere Miquel Brull 2025-03-07 14:30:47 +01:00 committed by GitHub
parent 24e67e8608
commit 6a60d4cb68
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -53,7 +53,8 @@ public final class PipelineServiceClientFactory {
| IllegalAccessException e) { | IllegalAccessException e) {
throw new PipelineServiceClientException( throw new PipelineServiceClientException(
String.format( String.format(
"Error trying to load PipelineServiceClient %s: %s", pipelineServiceClientClass, e)); "Error trying to load PipelineServiceClient %s: %s",
pipelineServiceClientClass, e.getCause()));
} }
} }
} }