Development JavaScript Tutorial

< html>

Try Catch Example

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