summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/docs/server2/object_store.py
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/extensions/docs/server2/object_store.py')
-rw-r--r--chrome/common/extensions/docs/server2/object_store.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/common/extensions/docs/server2/object_store.py b/chrome/common/extensions/docs/server2/object_store.py
index 106dd2d..f33aa91 100644
--- a/chrome/common/extensions/docs/server2/object_store.py
+++ b/chrome/common/extensions/docs/server2/object_store.py
@@ -25,7 +25,7 @@ class ObjectStore(object):
'''Gets a |Future| with values mapped to |keys| from the object store, with
any keys not in the object store omitted.
'''
- raise NotImplementedError()
+ raise NotImplementedError(self.__class__)
def Set(self, key, value):
'''Sets key -> value in the object store.
@@ -35,7 +35,7 @@ class ObjectStore(object):
def SetMulti(self, items):
'''Atomically sets the mapping of keys to values in the object store.
'''
- raise NotImplementedError()
+ raise NotImplementedError(self.__class__)
def Del(self, key):
'''Deletes a key from the object store.
@@ -45,4 +45,4 @@ class ObjectStore(object):
def DelMulti(self, keys):
'''Deletes |keys| from the object store.
'''
- raise NotImplementedError()
+ raise NotImplementedError(self.__class__)