Edit in JSFiddle

// invoke some function
(function(){
    // that invokes some function
    (function(){
        // that invokes some functions and errors
        (function(){
            throw new Error();
        })();
    })();
})();