Sends an error tuple from this operator's error port.

This method will also record the message in the debug log.

Namespace: StreamBase.SB
Assembly: StreamBase.SB.Client (in StreamBase.SB.Client.dll) Version: 7.7.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public void SendErrorOutput(
	Exception ex,
	int port,
	Tuple cause
)
Public Sub SendErrorOutput ( _
	ex As Exception, _
	port As Integer, _
	cause As Tuple _
)
public:
void SendErrorOutput(
	Exception^ ex, 
	int port, 
	Tuple^ cause
)

Parameters

ex
Exception
the exception to report.
port
Int32
port the input/output port to which the error is related.
cause
Tuple
the tuple that caused or is related to the error.

Exceptions

ExceptionCondition
StreamBase.SB..::..StreamBaseExceptionif the exception is null or if an error has occurred during processing.

See Also