We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 342ca3e commit 282498aCopy full SHA for 282498a
src/java/fr/paris/lutece/util/pool/service/ConnectionPool.java
@@ -130,7 +130,7 @@ private void initPool( int initConns )
130
}
131
catch( SQLException e )
132
{
133
- throw new AppException( "SQL Error executing command : " + e.toString( ) );
+ throw new AppException( "SQL Error executing command : " + e.toString( ), e );
134
135
136
@@ -250,7 +250,7 @@ private boolean isConnectionOK( Connection conn )
250
251
catch( SQLException se )
252
253
- throw new AppException( "ConnectionService : SQL Error executing command : " + se.toString( ) );
+ throw new AppException( "ConnectionService : SQL Error executing command : " + se.toString( ), se );
254
255
256
0 commit comments