OTX Reference  
OpenTestSystem.Otx.Core.Terms.GetExceptionOriginatorNode Class Reference

Node that triggered the Exception More...

Inheritance diagram for OpenTestSystem.Otx.Core.Terms.GetExceptionOriginatorNode:
Inheritance graph

Public Attributes

ExceptionTerm exception
 Exception object, which contains information about the exception. More...
 
- Public Attributes inherited from OpenTestSystem.Otx.Core.Terms.Term
MetaData metaData
 Store additional More...
 

Detailed Description

Node that triggered the Exception

GetExceptionOriginatorNode is a term, which returns the Node (activity), which has triggered the Exception.

Syntax
StringTerm = GetExceptionOriginatorNode(ExceptionTerm);
Examples
// Local Declarations
Exception Exception1;
String String1;
List<Integer> List1;
try
{
ListInsertItems(List1, 1, { 1});
}
catch (Exception Exception1)
{
}
String1 = GetExceptionOriginatorNode(Exception1);

Member Data Documentation

◆ exception

ExceptionTerm OpenTestSystem.Otx.Core.Terms.GetExceptionOriginatorNode.exception

Exception object, which contains information about the exception.