File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -371,10 +371,11 @@ instance, it is recommended that ``setRemoveOnCancelPolicy(true)`` is used.
371
371
This property is only available via programmatic configuration or IoC container. This property
372
372
allows you to set an instance of a class, implementing the `` com.zaxxer.hikari.SQLExceptionOverride ``
373
373
interface, that will be called before a connection is evicted from the pool due to specific exception
374
- conditions. Typically, when a `` SQLException `` is throw with specific * SQLStates* or * ErrorCodes* are
375
- present. The `` adjudicate() `` method will be called on the `` SQLExceptionOverride `` instance, which
376
- may return either `` Override.CONTINUE_EVICT `` or `` Override.DO_NOT_EVICT `` . Except in very specific
377
- cases `` Override.CONTINUE_EVICT `` should be returned.
374
+ conditions. Typically, when a `` SQLException `` is thrown, connections are evicted from the pool when
375
+ specific * SQLStates* or * ErrorCodes* are present. The `` adjudicate() `` method will be called on the
376
+ `` SQLExceptionOverride `` instance, which may return one of: `` Override.CONTINUE_EVICT `` .
377
+ `` Override.DO_NOT_EVICT `` or `` Override.MUST_EVICT `` . Except in very specific cases
378
+ `` Override.CONTINUE_EVICT `` should be returned, allowing the default evict/no-evict logic to execute.
378
379
* Default: none*
379
380
380
381
🔤 ; `` exceptionOverrideClassName `` <br />
You can’t perform that action at this time.
0 commit comments