summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/dom/ExceptionCode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/dom/ExceptionCode.cpp')
-rw-r--r--Source/WebCore/dom/ExceptionCode.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/WebCore/dom/ExceptionCode.cpp b/Source/WebCore/dom/ExceptionCode.cpp
index 1118a1a..9259be8 100644
--- a/Source/WebCore/dom/ExceptionCode.cpp
+++ b/Source/WebCore/dom/ExceptionCode.cpp
@@ -223,7 +223,8 @@ static const char* const idbDatabaseExceptionNames[] = {
"TRANSIENT_ERR",
"TIMEOUT_ERR",
"DEADLOCK_ERR",
- "READ_ONLY_ERR"
+ "READ_ONLY_ERR",
+ "ABORT_ERR"
};
static const char* const idbDatabaseExceptionDescriptions[] = {
@@ -238,7 +239,8 @@ static const char* const idbDatabaseExceptionDescriptions[] = {
"TRANSIENT_ERR", // FIXME: This isn't even used.
"TIMEOUT_ERR", // This can't be thrown.
"DEADLOCK_ERR", // This can't be thrown.
- "Write operations cannot be preformed on a read-only transaction."
+ "Write operations cannot be preformed on a read-only transaction.",
+ "The transaction was aborted, so the request cannot be fulfilled."
};
#endif