[
https://issues.apache.org/jira/browse/POOL-148?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Phil Steitz closed POOL-148.
----------------------------
> borrowObject should return the exception thrown by validateObject when
> throwing an Exception to let Exceptions be handled at a higher level
> -------------------------------------------------------------------------------------------------------------------------------------------
>
> Key: POOL-148
> URL: https://issues.apache.org/jira/browse/POOL-148
> Project: Commons Pool
> Issue Type: Bug
> Affects Versions: 1.5.2
> Environment: All
> Reporter: Monsieur EDI
> Assignee: Mark Thomas
> Fix For: 2.0
>
>
> public Object borrowObject() throws Exception {
> ...
> try {
> ...
> if(newlyCreated) {
> throw new NoSuchElementException("Could not create a
> validated object, cause: " + e.getMessage());
> }
> SHOULD BE CHANGED TO :
> if(newlyCreated) {
> throw new Exception("Could not create a validated
> object", e);
> }
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)