| Index: src/Utils.cpp | 
| diff --git a/src/Utils.cpp b/src/Utils.cpp | 
| index 790265675fb3e318992ba5fae6422178f9c40d17..3fc3f39779deb724e67538926940da11b102d092 100644 | 
| --- a/src/Utils.cpp | 
| +++ b/src/Utils.cpp | 
| @@ -49,6 +49,10 @@ v8::Local<v8::String> Utils::ToV8String(v8::Isolate* isolate, const std::string& | 
| v8::String::NewStringType::kNormalString, str.length()); | 
| } | 
|  | 
| +void Utils::ThrowException(v8::Isolate* isolate, const std::string& str) | 
| +{ | 
| +  isolate->ThrowException(Utils::ToV8String(isolate, str)); | 
| +} | 
|  | 
| #ifdef _WIN32 | 
| std::wstring Utils::ToUtf16String(const std::string& str) | 
|  |