[Zope-Checkins] CVS: StandaloneZODB/ZODB - POSException.py:1.13
Barry Warsaw
barry@wooz.org
Thu, 22 Aug 2002 10:56:31 -0400
Update of /cvs-repository/StandaloneZODB/ZODB
In directory cvs.zope.org:/tmp/cvs-serv29955
Modified Files:
POSException.py
Log Message:
Added TransactionTooLargeError which is subclassed from
StorageTransactionError. This exception is raised when a transaction
exhausts some finite storage resource. E.g. a transaction changing a
huge number of objects could fill a Berkeley lock table.
Also, removed some unnecessary `pass' statements, and improved
consistency in class docstrings (first line is a complete sentence).
=== StandaloneZODB/ZODB/POSException.py 1.12 => 1.13 ===
--- StandaloneZODB/ZODB/POSException.py:1.12 Wed Aug 14 18:07:09 2002
+++ StandaloneZODB/ZODB/POSException.py Thu Aug 22 10:56:31 2002
@@ -21,23 +21,21 @@
from ZODB import utils
class POSError(Exception):
- """Persistent object system error
- """
+ """Persistent object system error."""
class POSKeyError(KeyError, POSError):
- """Key not found in database
- """
+ """Key not found in database."""
def __str__(self):
return "%016x" % utils.U64(self.args[0])
class TransactionError(POSError):
- """An error occured due to normal transaction processing
- """
+ """An error occured due to normal transaction processing."""
class ConflictError(TransactionError):
- """Two transactions tried to modify the same object at once. This
- transaction should be resubmitted.
+ """Two transactions tried to modify the same object at once.
+
+ This transaction should be resubmitted.
Instance attributes:
oid : string
@@ -108,9 +106,10 @@
class ReadConflictError(ConflictError):
- """A conflict detected at read time -- attempt to read an object
- that has changed in another transaction (eg. another thread
- or process).
+ """A conflict was detected at read time.
+
+ An attempt was made to read an object that has changed in another
+ transaction (eg. another thread or process).
"""
def __init__(self, message=None, object=None, serials=None):
if message is None:
@@ -119,27 +118,29 @@
serials=serials)
class BTreesConflictError(ConflictError):
- """A special subclass for BTrees conflict errors, which return
- an undocumented four-tuple."""
+ """A special subclass for BTrees conflict errors.
+
+ These return an undocumented four-tuple.
+ """
def __init__(self, *btree_args):
ConflictError.__init__(self, message="BTrees conflict error")
self.btree = btree_args
class VersionError(POSError):
- """An error in handling versions occurred
- """
+ """An error in handling versions occurred."""
class VersionCommitError(VersionError):
- """An invalid combination of versions was used in a version commit
- """
+ """An invalid combination of versions was used in a version commit."""
class VersionLockError(VersionError, TransactionError):
- """An attempt was made to modify an object that has
- been modified in an unsaved version"""
+ """Modification to an object modified in an unsaved version.
-class UndoError(POSError):
- """An attempt was made to undo a non-undoable transaction.
+ An attempt was made to modify an object that has been modified in an
+ unsaved version.
"""
+
+class UndoError(POSError):
+ """An attempt was made to undo a non-undoable transaction."""
def __init__(self, *reason):
if len(reason) == 1: reason=reason[0]
self.__reason=reason
@@ -162,37 +163,31 @@
__str__=__repr__
class StorageError(POSError):
- pass
+ """Base class for storage based exceptions."""
class StorageTransactionError(StorageError):
- """An operation was invoked for an invalid transaction or state
- """
+ """An operation was invoked for an invalid transaction or state."""
class StorageSystemError(StorageError):
- """Panic! Internal storage error!
- """
+ """Panic! Internal storage error!"""
class MountedStorageError(StorageError):
- """Unable to access mounted storage.
- """
+ """Unable to access mounted storage."""
class ReadOnlyError(StorageError):
- """Unable to modify objects in a read-only storage.
- """
+ """Unable to modify objects in a read-only storage."""
+
+class TransactionTooLargeError(StorageTransactionError):
+ """The transaction exhausted some finite storage resource."""
class ExportError(POSError):
- """An export file doesn't have the right format.
- """
- pass
+ """An export file doesn't have the right format."""
class Unimplemented(POSError):
- """An unimplemented feature was used
- """
- pass
+ """An unimplemented feature was used."""
class Unsupported(POSError):
- """An feature that is unsupported bt the storage was used.
- """
+ """An feature that is unsupported bt the storage was used."""
class InvalidObjectReference(POSError):
"""An object contains an invalid reference to another object.