Westinghouse PROMS CPS integration - error handler when waiting to process a pipe message.

This commit is contained in:
Rich 2016-04-22 18:42:59 +00:00
parent b7f4423ca1
commit 8e09b4b064

View File

@ -40,7 +40,7 @@ namespace Volian.Pipe.Library
byte[] _buffer = Encoding.UTF8.GetBytes(msg);
pipeStream.BeginWrite(_buffer, 0, _buffer.Length, AsyncSend, pipeStream);
}
catch (TimeoutException ex)
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}