ExceptionListener2 delegate definition. You pass an ExceptionListener2 to the SetExceptionListener2 method.
Visual Basic
Public Delegate Sub ExceptionListener2( _
ByVal mgr As QAManagerBase, _
ByVal ex As QAException, _
ByVal msg As QAMessage _
)
C#
public delegate void ExceptionListener2(
QAManagerBase mgr,
QAException ex,
QAMessage msg
);
mgr The QAManagerBase that processed the message.
ex The exception that occurred.
msg The message that was received, or null if the message could not be constructed.