* Get a Resource from pool
* @return a Resource
* @throws org.tubo.exception.TuboResourceException
*/
public Resource get() throws TuboResourceException {
Resource resource = null;
try {
resource = (Resource)getPool().borrowObject();
} catch (Exception e) {
log.fatal(".get() - Error getting resource.",e);
TuboResourceException ex = new TuboResourceException("Error getting resource",e);