var $stop = {}; function long() { if (/* пора выходить */) { throw $stop; } } try { long(); } catch (e) { if (e != $stop) { throw e; } }