Development JavaScript Tutorial

< html>

Try Catch Example

try {
    window.nonExistentFunction();
} catch (oException) {
    alert("An exception occurred: " + oException.name);
} finally {
    alert("End of try…catch test.");
}