diff --git a/Userland/js.cpp b/Userland/js.cpp index 44b3e3a034..089ee322a6 100644 --- a/Userland/js.cpp +++ b/Userland/js.cpp @@ -280,7 +280,7 @@ void repl(JS::Interpreter& interpreter) auto result = interpreter.run(*program); if (interpreter.exception()) { - printf("Exception caught: "); + printf("Uncaught exception: "); print(interpreter.exception()->value()); interpreter.clear_exception(); } else {