Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,8 @@ private HandshakeStatus unwrap( ByteBuffer buffer ) throws IOException
*/
if ( channel.read( cipherIn ) < 0 )
{
throw new ClientException( "Failed to establish SSL socket connection." );
throw new ClientException( "SSL Connection terminated while receiving data. " +
"This can happen due to network instabilities, or due to restarts of the database." );
}
cipherIn.flip();

Expand Down