From db50fc25d190135e5dffcfa8f42b3b9c4a728d3b Mon Sep 17 00:00:00 2001 From: Simon Best Date: Sun, 24 Mar 2013 22:56:55 +0000 Subject: [PATCH] Removed spurious number from exception message. --- v8js_methods.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v8js_methods.cc b/v8js_methods.cc index 93568fc..7524719 100644 --- a/v8js_methods.cc +++ b/v8js_methods.cc @@ -290,7 +290,7 @@ V8JS_METHOD(require) if (EG(exception)) { // Clear the PHP exception and throw it in V8 instead zend_clear_exception(TSRMLS_CC); - return v8::ThrowException(v8::String::New("Module loader callback exception 456")); + return v8::ThrowException(v8::String::New("Module loader callback exception")); } // Convert the return value to string