Error.Errors.CallNonFunction |
A function
call failed because the name of the function
given could not be resolved. |
Error.Errors.GeneralFailure |
This is a general message indicating that a failure occurred. The error message must be consulted for more detailed information.
|
Error.Errors.InstanceMethodOn
Prototype |
A method
of invocation, object.method(), failed because
it is an instance method and the object is
a prototype. |
Error.Errors.InvalidAssignment |
An assignment
failed because the name being assigned to
did not refer to a valid object. |
Error.Errors.InvalidName
|
The name was not valid for the type of object it specified. |
Error.Errors.InvalidNew
|
A new
operator failed because a constructor could
not be found for the object. |
Error.Errors.InvalidParameter |
One or more
required parameters passed to a function,
function(param1, param2, ...), were either
not supplied or had the incorrect type. |
Error.Errors.NoAccess |
The user did
not have the required permissions to perform
the operation. |
Error.Errors.NonGenericMethod |
The method,
object.method(), could not be applied to the
object because the object's type does not
support it. |
Error.Errors.ObjectNotFound |
The object specified could not be found.
|
Error.Errors.ObjectExists |
The object that was being created already exists.
|
Error.Errors.OutOfMemory |
Not enough
memory could be allocated to complete the
operation. |
Error.Errors.OutOfStackSpace |
The operation
could not be completed because the script
runtime ran out of stack space. This may be
due to too much recursion in script. |
Error.Errors.PrimitveObjectMismatch
|
The primitive
value stored in the object could not be converted
to the expected type. |
Error.Errors.PrototypeMethodOnInstance |
A method
invocation, object.method(), failed because
it is a prototype-only method and the object
is an instance. |
Error.Errors.RanTooLong |
The script
exceeded the maximum allowable running time. |