Difference between revisions of "Core.Terms.GetExceptionOriginatorNode"
Jump to navigation
Jump to search
Line 18: | Line 18: | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie1| ExceptionTerm | [[Exception]] | [[Term]] | - | [1] | Exception, for which the associated activity is wanted}} | + | {{TableRowPropertie1| ExceptionTerm | [[Core.Actions.Throw.Exception|Exception]] | [[Term]] | - | [1] | Exception, for which the associated activity is wanted}} |
|} | |} | ||
Latest revision as of 07:02, 17 February 2016
Contents
Classification
Name | GetExceptionOriginatorNode |
Short Description | Identifier of an activity in which an exception was thrown |
Class | Term |
Extension | OTX Core library |
Group | Exception related terms |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
StringTerm = GetExceptionOriginatorNode(ExceptionTerm);
Description
GetExceptionOriginatorNode is a term, which returns the identifier of an activity in which an exception has been thrown.
![]() |
Important: Please keep in mind that this TermActivity in the form of an activity exists and no text can be entered. According to the respective ActionNode can further properties are added. |
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
String | Return of the ID of the activity in which the exception was thrown |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
ExceptionTerm | Exception | Term | - | [1] | Exception, for which the associated activity is wanted |
OTL Examples
Exception Exception1;
String String1;
List<Integer> List1;
try
{
ListInsertItems(List1, 1, {1});
}
catch (Exception Exception1)
{
}
String1 = GetExceptionOriginatorNode(Exception1);