MismatchedQuote class: Difference between revisions
mNo edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | |||
A <var>MismatchedQuote</var> exception indicates | A <var>MismatchedQuote</var> exception indicates | ||
that an unmatched quote character was found while scanning for a token with the <var>[[StringTokenizer class|StringTokenizer]]</var> class. | that an unmatched quote character was found while scanning for a token with the <var>[[StringTokenizer class|StringTokenizer]]</var> class. | ||
Line 34: | Line 33: | ||
<li>[[MismatchedQuote methods syntax|"MismatchedQuote methods syntax"]] is a single page that contains the syntax diagrams of all the methods in the class. | <li>[[MismatchedQuote methods syntax|"MismatchedQuote methods syntax"]] is a single page that contains the syntax diagrams of all the methods in the class. | ||
</ul> | </ul> | ||
==New constructor== | ==New constructor== |
Revision as of 00:14, 2 November 2012
A MismatchedQuote exception indicates that an unmatched quote character was found while scanning for a token with the StringTokenizer class. For example:
%t is object stringTokenizer %t = 'foo"bar':stringTokenizer %t:quotes = '"' printText {~=%t:nextToken} printText {~=%t:nextToken}
The result of the above fragment is:
%t:nextToken=foo %t:nextToken= *** 1 CANCELLING REQUEST: MSIR.0750: Class StringTokenizer, function NextToken: MismatchedQuote exception: String contains a mismatched quote ...
To produce an MismatchedQuote exception yourself, you typically use a User Language Throw statement with an MismatchedQuote New constructor. This statement must be issued from within a method, and it can only be caught by the code that calls the method. For example, the following statement throws an MismatchedQuote exception:
throw %(mismatchedQuote):new
Remember that you catch an exception with the Catch statement; if an exception condition occurs outside a Catch for it, the request is cancelled.
The MismatchedQuote class is available as of version 7.7.
The MismatchedQuote methods
The following are the available MismatchedQuote class methods.
Method | Description |
---|---|
New | Create a new MismatchedQuote 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.
- "MismatchedQuote methods syntax" is a single page that contains the syntax diagrams of all the methods in the class.
New constructor
Create a new MismatchedQuote object (MismatchedQuote class)
[Introduced in Sirius Mods 7.7]
This Constructor generates an instance of an MismatchedQuote exception. The New method format follows:
Syntax
%mismatchedQuote = [%(MismatchedQuote):]New
Syntax terms
%mismatchedQuote | A reference to an instance of an MismatchedQuote object. |
---|---|
[%(MismatchedQuote):] | The class name in parentheses denotes a Constructor. See "Usage notes", below, for more information about invoking an MismatchedQuote 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:
%mismatchExc = new %mismatchExc = %(MismatchedQuote):new %mismatchExc = %mismatchExc:new