From 58cccdbe67f6e1966116b3d2f4c83d77863daadc Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Tue, 31 Oct 2006 00:31:43 +0000 Subject: Added the new linkmessenger class that will act as a base-class for anything that wants to send messages to a containing programlink. Also fiddled with other things...aparently. --- src/connection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/connection.cpp') diff --git a/src/connection.cpp b/src/connection.cpp index 3d3c094..748d56d 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -311,7 +311,7 @@ void Connection::waitForInput( int nBytesIn, int nSec, int nUSec ) { if( nSec == 0 && nUSec == 0 ) { - throw ConnectionException( excodeSocketTimeout, "Socket Timeout"); + throw ConnectionException( excodeSocketTimeout, "Timed out while waiting for %d bytes.", nBytesIn ); } readInput( nSec, nUSec, &nSec, &nUSec ); rlen = getInputAmnt(); -- cgit v1.2.3