Exception Class

Defines the base class for exception objects used to handle error conditions when executing EasyLanguage code.  

Namespace: elsystem

Methods
  Name Description
Public property Create() Initializes a new instance of the Exception class.
Public property Create( Message ) Initializes a new instance of the Exception class with the specified text string used as the error message.
Public property Create( Message, ex ) Initializes a new instance of the Exception class. The text string specified in the Message parameter is used as the error message. The exception specified in the ex parameter is used as the InnerException property of the newly-instantiated exception.

 

See Also

SystemException (class)