Index: Source/modules/indexeddb/IDBObjectStore.cpp |
diff --git a/Source/modules/indexeddb/IDBObjectStore.cpp b/Source/modules/indexeddb/IDBObjectStore.cpp |
index e81440e387a14857f802d160bcdd12a5198f8cf9..2ad2b4eae2b0ed6fa3bce73de385251386b6dbe6 100644 |
--- a/Source/modules/indexeddb/IDBObjectStore.cpp |
+++ b/Source/modules/indexeddb/IDBObjectStore.cpp |
@@ -396,7 +396,7 @@ PassRefPtr<IDBIndex> IDBObjectStore::createIndex(ExecutionContext* context, cons |
return 0; |
} |
if (name.isNull()) { |
- exceptionState.throwUninformativeAndGenericTypeError(); |
+ exceptionState.throwTypeError("The name provided is null."); |
return 0; |
} |
if (containsIndex(name)) { |