Difference between revisions of "Core.Terms.GetExceptionText"
Jump to navigation
Jump to search
m (Hb moved page GetExceptionText to Core.Terms.GetExceptionText: #3153) |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | [[Category:Core]] | + | {{DISPLAYTITLE:OTX '''GetExceptionText'''}}[[Category:Core]] |
== Classification == | == Classification == | ||
{{ClassificationActivity | GetExceptionText | Text of an exception | [[Term]] | [[Core|OTX Core library]] | [[Exception related terms]] | - | - }} | {{ClassificationActivity | GetExceptionText | Text of an exception | [[Term]] | [[Core|OTX Core library]] | [[Exception related terms]] | - | - }} | ||
Line 9: | Line 9: | ||
== Description == | == Description == | ||
− | '''GetExceptionText''' is a term, which returns the text of an [[Exception]]. | + | '''GetExceptionText''' is a term, which returns the text of an [[Core.Actions.Throw.Exception|Exception]]. |
{{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 text of the specified exception}} | + | {{TermReturnValue| [[Core.DataTypes.SimpleDataType.String|String]] | Return of the text of the specified exception}} |
== Properties == | == Properties == | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie1| ExceptionTerm | [[Exception]] | [[Term]] | - | [1] | Exception}} | + | {{TableRowPropertie1| ExceptionTerm | [[Core.Actions.Throw.Exception|Exception]] | [[Term]] | - | [1] | Exception}} |
|} | |} | ||
Line 29: | Line 29: | ||
== See also == | == See also == | ||
− | [[GetExceptionOriginatorNode]] <br/> | + | [[Core.Terms.GetExceptionOriginatorNode|GetExceptionOriginatorNode]] <br/> |
− | [[GetExceptionQualifier]] <br/> | + | [[Core.Terms.GetExceptionQualifier|GetExceptionQualifier]] <br/> |
− | [[GetStackTrace]] | + | [[Core.Terms.GetStackTrace|GetStackTrace]] |
Latest revision as of 07:05, 17 February 2016
Contents
Classification
Name | GetExceptionText |
Short Description | Text of an exception |
Class | Term |
Extension | OTX Core library |
Group | Exception related terms |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
StringTerm = GetExceptionText(ExceptionTerm);
Description
GetExceptionText is a term, which returns the text of an Exception.
![]() |
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 text of the specified exception |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
ExceptionTerm | Exception | Term | - | [1] | Exception |
Examples
UserException exceptionVariable = @UserException:"UserException"/"UserException";
String result;
result = GetExceptionText(exceptionVariable);
See also
GetExceptionOriginatorNode
GetExceptionQualifier
GetStackTrace