exception handler
RU: обработчик исключений
A block of code written to catch a raised exception and recover from it — in JavaScript, a catch block. During stack unwinding the runtime checks each frame for a handler; the first one found stops the unwind, runs, and resumes normal control flow from inside itself. If no frame has a handler, the program crashes.