ASP サーバー上でサーバー側の JScript エンジンを使用して Web サイトを開発しています。
私のコードには、大まかに次のような try-catch 句がいくつかあります。
try {
// do something
}
catch (err) {
// pass it to the frontend code
die("Exception caught: " + err.description);
}
エラーが発生した行番号を表示したいと思います。ファイル名は素晴らしいボーナスですが、それほど重要ではありません。どうすればそれができますか?
ありがとう!