professional-javascript-14-TryCatchExample2.htm / htm
<html> <head> <title>Try Catch Example</title> <script type="text/javascript"> try { eval("a ++ b"); //causes error } catch (oException) { alert("An exception occurred."); try { var arrErrors = new Array(10000000000000000000000); //causes error arrErrors.push(exception); } catch (oException2) { alert("Another exception occurred."); } } finally { alert("All done."); } </script> </head> <body> </body> </html>
(C) Æliens 20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.