JScript Run-time Errors (Windows Scripting - JScript)
JScript run-time errors are errors that result when your JScript script attempts to perform an action that the system cannot execute. JScript run-time errors occur while your script is being executed; when variable expressions are being evaluated, and memory is being dynamic allocated.
Errors
Error Number |
Description |
---|---|
5029 |
|
5030 |
|
5028 |
|
5010 |
|
5003 |
|
5000 |
|
5034 |
|
5006 |
|
5015 |
|
5022 |
|
5020 |
|
5019 |
|
5023 |
|
5002 |
|
5008 |
|
5021 |
|
5035 |
|
5014 |
|
5001 |
|
5007 |
|
5012 |
|
5016 |
|
5005 |
|
5017 |
|
5026 |
|
5027 |
|
5025 |
|
5024 |
|
5009 |
|
5018 |
|
5013 |
Script Host Errors
The following errors are properly speaking errors pertaining to the script host, but you may see them occasionally.
Error |
HRESULT |
Description |
---|---|---|
SCRIPT_E_RECORDED |
0x86664004 |
An error has been recorded to be passed between script engine and host. The host needs to pass the error code to the caller. |
SCRIPT_E_REPORTED |
0x80020101 |
Script engine has reported an unhandled exception to the host via IActiveScriptSite::OnScriptError. Host can ignore this error. |
SCRIPT_E_PROPAGATE |
0x8002010 |
A script error is being propagated to the caller which might be in a different thread. The host should pass the error code to the caller. |
Change History
Date |
History |
Reason |
---|---|---|
August 2008 |
Added JSON errors. |
Information enhancement. |