| Index: Source/bindings/templates/interface.cpp | 
| diff --git a/Source/bindings/templates/interface.cpp b/Source/bindings/templates/interface.cpp | 
| index 5bad57ff9af00d476d9112557f4d962fd7391a8c..402d49af93b2776a2dcd6cdc23a7348004e0a4a7 100644 | 
| --- a/Source/bindings/templates/interface.cpp | 
| +++ b/Source/bindings/templates/interface.cpp | 
| @@ -151,7 +151,7 @@ static void indexedPropertySetter(uint32_t index, v8::Local<v8::Value> jsValue, | 
| { | 
| {{cpp_class}}* collection = {{v8_class}}::toNative(info.Holder()); | 
| {{setter.v8_value_to_local_cpp_value}}; | 
| -    {% if setter.is_raises_exception %} | 
| +    {% if setter.has_exception_state %} | 
| ExceptionState exceptionState(info.Holder(), info.GetIsolate()); | 
| {% endif %} | 
| {% set setter_name = setter.name or 'anonymousIndexedSetter' %} | 
| @@ -310,7 +310,7 @@ static void namedPropertySetter(v8::Local<v8::String> name, v8::Local<v8::Value> | 
| {# v8_value_to_local_cpp_value('DOMString', 'name', 'propertyName') #} | 
| V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, propertyName, name); | 
| {{setter.v8_value_to_local_cpp_value}}; | 
| -    {% if setter.is_raises_exception %} | 
| +    {% if setter.has_exception_state %} | 
| ExceptionState exceptionState(info.Holder(), info.GetIsolate()); | 
| {% endif %} | 
| {% set setter_name = setter.name or 'anonymousNamedSetter' %} | 
|  |