javascriptでonerrorを設定してあげるとできるようです。
html = {"
<html>
<head>
<script type="text/javascript"><!--
function serror(msg, url, line) {
// alert("エラーが発生\nエラー:"+msg+"\nURL:"+url+"\nエラーの行:"+line);
return true;
}
window.onerror = serror;
document.rite("aaa");// エラーを発生させる
// --></script>
</head>
<body>
えらぁ表示がでなかったかな?
</body>
</html>
"}
axobj IE, "Shell.Explorer.2"
IE -> "Navigate" "about:blank"
doc = IE("Document")
doc -> "Open"
doc -> "Write" html
doc -> "Close"