why does my JScript (windows script host) exit with 0 on an uncaught exception?

喜你入骨 提交于 2019-12-21 05:48:18

问题


I have some JScript which does some stuff with an ODBC connection. An exception was thrown by the ODBC ActiveXObject object and not caught in my script. I expected that the script would exit with an non 0 value but it didn't. Anyone know why this is the case and how to get it to exit with a non 0 value on an uncaught exception?


回答1:


The JScript engine can be thought of as a virtual machine. If the JScript engine itself or the script host were to have some form of catastrophic failure you could expect to get a non zero exit code (for example an the script host couldn't find one of the DLLs it needs).

However if the script program being run on this 'VM' throws an exception even an unhandled one that does not constitute a failure in the engine or the host.

What you can do is place the whole script in a try block and then just throw the exception in the catch. The scripting engine will handle this thrown exception exactly as you wanted the original handled:-

try
{

  // the rest of your script

}
catch(e)
{
  throw(e);  // returns nonzero exit code
}


来源:https://stackoverflow.com/questions/723840/why-does-my-jscript-windows-script-host-exit-with-0-on-an-uncaught-exception

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!