| Index: Source/modules/webdatabase/DatabaseSync.cpp
|
| diff --git a/Source/modules/webdatabase/DatabaseSync.cpp b/Source/modules/webdatabase/DatabaseSync.cpp
|
| index 1f7916d3fba63f0de9306697761f80b2f84cddf5..ebe1309a82e62b8a1af756f617f7123e798177f6 100644
|
| --- a/Source/modules/webdatabase/DatabaseSync.cpp
|
| +++ b/Source/modules/webdatabase/DatabaseSync.cpp
|
| @@ -82,7 +82,7 @@ void DatabaseSync::changeVersion(const String& oldVersion, const String& newVers
|
| if (sqliteDatabase().transactionInProgress()) {
|
| reportChangeVersionResult(1, SQLError::DATABASE_ERR, 0);
|
| setLastErrorMessage("unable to changeVersion from within a transaction");
|
| - es.throwDOMException(SQLDatabaseError);
|
| + es.throwUninformativeAndGenericDOMException(SQLDatabaseError);
|
| return;
|
| }
|
|
|
| @@ -159,7 +159,7 @@ void DatabaseSync::runTransaction(PassRefPtr<SQLTransactionSyncCallback> callbac
|
|
|
| if (sqliteDatabase().transactionInProgress()) {
|
| setLastErrorMessage("unable to start a transaction from within a transaction");
|
| - es.throwDOMException(SQLDatabaseError);
|
| + es.throwUninformativeAndGenericDOMException(SQLDatabaseError);
|
| return;
|
| }
|
|
|
|
|