Difference between revisions of "Core.Terms.GetExceptionQualifier"
Jump to navigation
Jump to search
(Created page with "Category:Core == Classification == {{ClassificationActivity | GetExceptionQualifier | Qualifier of an exception | Term | OTX Core library | Exception relate...") |
|||
Line 3: | Line 3: | ||
{{ClassificationActivity | GetExceptionQualifier | Qualifier of an exception | [[Term]] | [[Core|OTX Core library]] | [[Exception related terms]] | - | - }} | {{ClassificationActivity | GetExceptionQualifier | Qualifier of an exception | [[Term]] | [[Core|OTX Core library]] | [[Exception related terms]] | - | - }} | ||
− | == | + | == OTL Syntax == |
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | + | StringTerm = GetExceptionQualifier(ExceptionTerm); | |
</syntaxhighlight> | </syntaxhighlight> | ||
Line 23: | Line 23: | ||
== Examples == | == Examples == | ||
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | String result = GetExceptionQualifier(exceptionVariable) | + | UserException exceptionVariable = @UserException:"UserException"/"UserException"; |
+ | String result; | ||
+ | result = GetExceptionQualifier(exceptionVariable); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 08:00, 4 February 2015
Contents
Classification
Name | GetExceptionQualifier |
Short Description | Qualifier of an exception |
Class | Term |
Extension | OTX Core library |
Group | Exception related terms |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
StringTerm = GetExceptionQualifier(ExceptionTerm);
Description
GetExceptionQualifier is a term, which returns the qualifier 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 qualifiers (category) 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 = GetExceptionQualifier(exceptionVariable);