You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to catch and properly handle ClientException when trying to acquire connection from the pool and failing due to timeout.
The code throwing the ClientException instance does not specify a code that can be used to differentiate the exception from other ClientException instances:
thrownewClientException(
"Unable to acquire connection from the pool within configured maximum time of " +
settings.connectionAcquisitionTimeout() + "ms" );
Is it possible to add a new ClientError classification code specific to this case?
The text was updated successfully, but these errors were encountered:
I need to catch and properly handle
ClientException
when trying to acquire connection from the pool and failing due to timeout.The code throwing the
ClientException
instance does not specify acode
that can be used to differentiate the exception from otherClientException
instances:Is it possible to add a new
ClientError
classification code specific to this case?The text was updated successfully, but these errors were encountered: