DebuggerExceptionBreakMode
Controls when the Luau debugger pauses script execution in response to a runtime exception.
Items 3
| History | Name | Value | Description | |
|---|---|---|---|---|
| 515 | Never | 0 | The debugger never pauses due to a runtime exception; execution continues normally regardless of whether the exception is caught or uncaught. | |
| 598 | Always | 1 | The debugger pauses on every runtime exception, including those caught by
| |
| 598 | Unhandled | 2 | The debugger pauses only on runtime exceptions that propagate without
being caught by |
Description
Controls when the Luau debugger pauses script execution in response to a
runtime exception. This enum is used as the breakMode argument to
DebuggerConnection:SetExceptionBreakMode().