Create a LiveViewException with the given message and root cause. Convenience method equivalent to LiveViewException(String.Format(msg, params), 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,
	Exception cause,
	string msg,
	params Object[] parms
)
Public Sub New ( _
	excode As LiveViewExceptionCode, _
	cause As Exception, _
	msg As String, _
	ParamArray parms As Object() _
)
public:
LiveViewException(
	LiveViewExceptionCode excode, 
	Exception^ cause, 
	String^ msg, 
	... array<Object^>^ parms
)

Parameters

excode
LiveViewExceptionCode
LiveViewExceptionCode describing this exception.
cause
Exception
The nested exception.
msg
String
Message explaining the reason for this exception.
parms
array<Object>[]()[][]
The parameters to be applied to 'msg' in the call to String.Format(msg, params).

See Also