exception
RU: исключение
The runtime mechanism that responds when an error is raised: it stops normal control flow — the next instruction does not run — and unwinds the call stack frame by frame, searching for a handler. The exception is the controlled process; the error condition is the fact it responds to. In JavaScript and TypeScript an exception is raised with the throw keyword.