don't include connection string in exception message

This commit is contained in:
Guenter Obiltschnig 2016-09-11 01:41:42 +02:00
parent 909c06ac6c
commit 154a202142

View File

@ -82,7 +82,7 @@ Session SessionPool::get()
_idleSessions.push_front(pHolder);
++_nSessions;
}
else throw SessionPoolExhaustedException(_connector, _connectionString);
else throw SessionPoolExhaustedException(_connector);
}
PooledSessionHolderPtr pHolder(_idleSessions.front());