How to exit a Julia program without completely exit REPL or shutting down Julia?

Just had a use case with debugging my code - I used error("some message") to interrupt the program execution and return to (VSCode) REPL. It does exactly what I need except it each time prints the stack which I DO NOT need.

Wouldn’t it be possible to have an additional (keyword?) argument for error / throw like printstack=true