Development JavaScript Tutorial

< html>

Try Catch Example

try {
   var arrErrors = new Array(10000000000000000000000);  //causes error
   arrErrors.push(exception);
} catch (oException) {
    alert("An exception occurred.");
} finally {
    alert("All done.");
}