From dd35b5b8b4499f89d09ab6c3c568bc8974993da7 Mon Sep 17 00:00:00 2001 From: belliash Date: Mon, 3 Sep 2018 16:29:50 +0200 Subject: [PATCH] Uncaught exception message. --- engine/vm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/vm.c b/engine/vm.c index 98c6896..c387b12 100644 --- a/engine/vm.c +++ b/engine/vm.c @@ -9398,7 +9398,7 @@ static sxi32 VmUncaughtException( } /* Generate a listing */ PH7_VmGenericError(&(*pVm), PH7_CTX_ERR, - "Uncaught exception '%z' in the '%z' frame context", + "Uncaught exception '%z' in the '%z()' function/method", &sName, &sFuncName); /* Tell the upper layer to stop VM execution immediately */ rc = SXERR_ABORT;