UnsupportedCrypto class

From m204wiki
Revision as of 01:03, 9 March 2016 by JAL (talk | contribs) (Created page with "This page is under construction. __NOTOC__ The <var>UnsupportedCrypto</var> exception class describes an exception associated with finding ??? To produce an <var>Unsupp...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This page is under construction.


The UnsupportedCrypto exception class describes an exception associated with finding ???

To produce an UnsupportedCrypto exception yourself, you typically use a SOUL Throw statement with an UnsupportedCrypto 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 UnsupportedCrypto exception:

throw %(UnsupportedCrypto):new

The UnsupportedCrypto methods

The following are the available UnsupportedCrypto class methods.

MethodDescription
NewCreate a new UnsupportedCrypto object

The methods in the class are described in the subsections that follow. In addition:

New constructor

Create a new UnsupportedCrypto object (UnsupportedCrypto class)

This Constructor generates an instance of an UnsupportedCrypto exception. As shown below, the New method takes no arguments.

Syntax

%unsupportedCrypto = [%(UnsupportedCrypto):]New

Syntax terms

%unsupportedCrypto A reference to an instance of an UnsupportedCrypto object.
[%(UnsupportedCrypto):]The class name in parentheses denotes a Constructor.