We shouldn't be breaking on exception throws when break on exceptions is not turned on.
```
try {
console.log('Hello world');
throw true;
} catch (e) { }
```
```
try {
console.log('Hello world');
throw true;
} catch (e) { }
```