Chapter 3 DynaScript Predefined Objects
The system
object
has these properties:
system.errorNumber
This property is read-only.
A number [integer] representing the error code of the last system method call.
This example displays an error code:
<!--SCRIPT
document.WriteLn( system.errorNumber );
-->
system.errorString
This property is read-only.
A string containing an error message for the error code of the last system method call. This is a read only property.
This example displays an error message:
<!--SCRIPT
document.WriteLn( system.errorString );
-->
Copyright © 1999 Sybase, Inc. All rights reserved. |