InvalidTranslateTable class
The InvalidTranslateTable exception class indicates that a system translate table (as loaded by JANUS LOADXT) was requested but not found. InvalidTranslateTable was introduced in Model 204 version 7.5.
To produce a InvalidTranslateTable exception for yourself, you typically use a User Language Throw statement with an InvalidTranslateTable New constructor. For example, the following statement throws an InvalidTranslateTable exception:
throw %(invalidTranslateTable):new
For an example of how you might use an exception in your own code, see this InvalidValue exception example.
The InvalidTranslateTable methods
The following are the available InvalidTranslateTable class methods.
Method | Description |
---|---|
New | Create a new InvalidTranslateTable object |
The methods in the class are described in the subsections that follow. In addition:
- "Notation conventions for methods" has information about the conventions followed.
- "InvalidTranslateTable methods syntax" is a single page that contains the syntax diagrams of all the methods in the class.
New constructor
Create a new InvalidTranslateTable object (InvalidTranslateTable class)
[Introduced in Model 204 7.5]
This Constructor generates an instance of an InvalidTranslateTable exception. The New method format is as follows:
Syntax
%invalidTranslateTable = [%(InvalidTranslateTable):]New
Syntax terms
%invalidTranslateTable | A reference to an instance of a InvalidTranslateTable object. |
---|---|
[%(InvalidTranslateTable):] | The class name in parentheses denotes a Constructor. See Usage notes, below, for more information about invoking a InvalidTranslateTable Constructor. |
Usage notes
- As described in Using New or other Constructors, New can be invoked with no object, with an explicit class name, or with an object variable in the class, even if that object is Null:
%invalidxt = new %invalidxt = %(InvalidTranslateTable):new %invalidxt = %invalidxt:new