| 43 | } |
| 44 | |
| 45 | STDMETHODIMP ScriptException::IsExceptionHandled(bool* is_handled) { |
| 46 | *is_handled = this->is_exception_handled_; |
| 47 | return S_OK; |
| 48 | } |
| 49 | |
| 50 | STDMETHODIMP ScriptException::GetDescription(BSTR* description) { |
| 51 | return this->message_.CopyTo(description); |