Create a LiveViewException with the given message and root cause.

Namespace: StreamBase.LiveView.API
Assembly: StreamBase.LiveView.API (in StreamBase.LiveView.API.dll) Version: 2.2.8.5956 (2.2.8.5956)

Syntax

         
 C#  Visual Basic  Visual C++ 
public LiveViewException(
	LiveViewExceptionCode excode,
	string msg,
	Exception cause
)
Public Sub New ( _
	excode As LiveViewExceptionCode, _
	msg As String, _
	cause As Exception _
)
public:
LiveViewException(
	LiveViewExceptionCode excode, 
	String^ msg, 
	Exception^ cause
)

Parameters

excode
LiveViewExceptionCode
LiveViewExceptionCode describing this exception.
msg
String
Message explaining the reason for this exception.
cause
Exception
The nested exception.

See Also