InvocationException Constructor (String, IObject, String, Object) |
Initializes a new instance of the InvokationException class using the specified error message, object, member name and parameters.
Namespace:
SmartBear.TestLeft.TestObjects
Assembly:
SmartBear.TestLeft (in SmartBear.TestLeft.dll) Version: 14.70.237.11 (14.70.237.11)
Syntax public InvocationException(
string msg,
IObject obj,
string memberName,
Object[] parameters
)
Public Sub New (
msg As String,
obj As IObject,
memberName As String,
parameters As Object()
)
Dim msg As String
Dim obj As IObject
Dim memberName As String
Dim parameters As Object()
Dim instance As New InvocationException(msg, obj,
memberName, parameters)
public:
InvocationException(
String^ msg,
IObject^ obj,
String^ memberName,
array<Object^>^ parameters
)
Parameters
- msg
- Type: SystemString
The error message that explains why the exception occurred. - obj
- Type: SmartBear.TestLeft.TestObjectsIObject
The object whose member threw the exception. - memberName
- Type: SystemString
The name of the object member, invocation of which caused the exception. - parameters
- Type: SystemObject
The parameters of the failed invocation.
See Also