Difference between revisions of "Core.Terms.GetExceptionOriginatorNode"

From emotive
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
[[Category:Core]]
+
{{DISPLAYTITLE:OTX '''GetExceptionOriginatorNode'''}}[[Category:Core]]
 
== Classification ==
 
== Classification ==
 
{{ClassificationActivity | GetExceptionOriginatorNode | Identifier of an activity in which an exception was thrown | [[Term]] | [[Core|OTX Core library]] | [[Exception related terms]] | - | - }}
 
{{ClassificationActivity | GetExceptionOriginatorNode | Identifier of an activity in which an exception was thrown | [[Term]] | [[Core|OTX Core library]] | [[Exception related terms]] | - | - }}
Line 13: Line 13:
 
{{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.}}
 
{{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.}}
  
{{TermReturnValue| [[String]] | Return of the ID of the activity in which the exception was thrown}}
+
{{TermReturnValue| [[Core.DataTypes.SimpleDataType.String|String]] | Return of the ID of the activity in which the exception was thrown}}
  
 
== Properties ==
 
== Properties ==
 
{| {{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}}
 
|}
 
|}
  
Line 39: Line 39:
  
 
== See also ==
 
== See also ==
[[GetExceptionQualifier]] <br/>
+
[[Core.Terms.GetExceptionQualifier|GetExceptionQualifier]] <br/>
[[GetExceptionText]] <br/>
+
[[Core.Terms.GetExceptionText|GetExceptionText]] <br/>
[[GetStackTrace]]
+
[[Core.Terms.GetStackTrace|GetStackTrace]]

Latest revision as of 07:02, 17 February 2016

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.

Exclamation.png 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.

Icons Note.png 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);

See also

GetExceptionQualifier
GetExceptionText
GetStackTrace