Feedback

  • Contents
 

CallObject.lastError Property

Definition

This property retrieves the text of the last error that occurred in the CallObject. Each time a method or property is called on the CallObject, this value is cleared.

Syntax

CallObject.lastError

Usage

Read       Yes

Write       No

Value Assigned

None.

Value Returned

String

The text message of the last error that occurred.


Example

function GetLastError() {
    alert(scripter.callObject.lastError);
}