Difference between revisions of "Core.Terms.UserExceptionCreate"
Jump to navigation
Jump to search
m (Hb moved page UserExceptionCreate to Core.Terms.UserExceptionCreate: #3153) |
|||
Line 1: | Line 1: | ||
− | [[Category:Core]] | + | {{DISPLAYTITLE:OTX '''UserExceptionCreate'''}}[[Category:Core]] |
== Classification == | == Classification == | ||
{{ClassificationActivity | UserExceptionCreate | Creates a new UserException at run time | [[Term]] | [[Core|OTX Core library]] | [[Creation terms]] | - | - }} | {{ClassificationActivity | UserExceptionCreate | Creates a new UserException at run time | [[Term]] | [[Core|OTX Core library]] | [[Creation terms]] | - | - }} | ||
Line 16: | Line 16: | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie1| Qualifier | [[String]] | [[Term]] | - | [1] | Text to the categorization of the exception}} | + | {{TableRowPropertie1| Qualifier | [[Core.DataTypes.SimpleDataType.String|String]] | [[Term]] | - | [1] | Text to the categorization of the exception}} |
− | {{TableRowPropertie2| Text | [[String]] | [[Term]] | - | [1] | ext to the description of the exception}} | + | {{TableRowPropertie2| Text | [[Core.DataTypes.SimpleDataType.String|String]] | [[Term]] | - | [1] | ext to the description of the exception}} |
|} | |} | ||
Line 27: | Line 27: | ||
== See also == | == See also == | ||
− | [[ListCreate]] <br/> | + | [[Core.Terms.ListCreate|ListCreate]] <br/> |
− | [[MapCreate]] | + | [[Core.Terms.MapCreate|MapCreate]] |
Revision as of 03:11, 5 February 2016
Contents
Classification
Name | UserExceptionCreate |
Short Description | Creates a new UserException at run time |
Class | Term |
Extension | OTX Core library |
Group | Creation terms |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
ExceptionTerm = UserExceptionCreate(StringLiteral, StringLiteral);
Description
UserExceptionCreate is a term to create a new UserException at run time. It is produced by passing a qualifier and a text.
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
Exception | The newly created UserException |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
Qualifier | String | Term | - | [1] | Text to the categorization of the exception |
Text | String | Term | - | [1] | ext to the description of the exception |
OTL Examples
Exception result;
result = UserExceptionCreate("UserException", "UserException was throw");