Index: Source/bindings/v8/ExceptionState.cpp |
diff --git a/Source/bindings/v8/ExceptionState.cpp b/Source/bindings/v8/ExceptionState.cpp |
index 10223be501609f4e46f82c060cf93c30a25b5395..77c9103d7be7afe21926f028d6d315689b8af907 100644 |
--- a/Source/bindings/v8/ExceptionState.cpp |
+++ b/Source/bindings/v8/ExceptionState.cpp |
@@ -80,7 +80,7 @@ void ExceptionState::throwTypeError(const String& message) |
{ |
ASSERT(m_isolate); |
m_code = TypeError; |
- setException(V8ThrowException::createTypeError(message, m_isolate)); |
+ setException(V8ThrowException::createTypeError(addExceptionContext(message), m_isolate)); |
} |
void TrackExceptionState::throwDOMException(const ExceptionCode& ec, const String& message) |