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 7e7e0c9..1118a1a 100644
--- a/Source/WebCore/dom/ExceptionCode.cpp
+++ b/Source/WebCore/dom/ExceptionCode.cpp
@@ -222,7 +222,8 @@ static const char* const idbDatabaseExceptionNames[] = {
"RECOVERABLE_ERR",
"TRANSIENT_ERR",
"TIMEOUT_ERR",
- "DEADLOCK_ERR"
+ "DEADLOCK_ERR",
+ "READ_ONLY_ERR"
};
static const char* const idbDatabaseExceptionDescriptions[] = {
@@ -236,7 +237,8 @@ static const char* const idbDatabaseExceptionDescriptions[] = {
"RECOVERABLE_ERR", // FIXME: This isn't even used.
"TRANSIENT_ERR", // FIXME: This isn't even used.
"TIMEOUT_ERR", // This can't be thrown.
- "DEADLOCK_ERR" // This can't be thrown.
+ "DEADLOCK_ERR", // This can't be thrown.
+ "Write operations cannot be preformed on a read-only transaction."
};
#endif