CommandException(String, PositionInScript) Constructor
Initializes a new instance of the CommandException class.
Namespace: DevExpress.EasyTest.Framework
Assembly: DevExpress.EasyTest.v24.1.dll
NuGet Package: DevExpress.EasyTest
Declaration
Parameters
Name | Type | Description |
---|---|---|
errorMessage | String | A string that describes an error that has occured. |
startPosition | DevExpress.EasyTest.Framework.PositionInScript | The PositionInScript object that specifies the position of the command that is being executed. |
Remarks
Use this constructor to create an instance of the CommandException class when it is required to handle an error in EasyTest command implementation (e.g. wrong parameter count). To get the current position in the script, use the Command.StartPosition property. An example is provided in the How to: Implement a Custom EasyTest Command topic.
See Also