Sophie

Sophie

distrib > Fedora > 13 > i386 > media > os > by-pkgid > 38d9966b2e862f62a2028762250d72f3 > files > 19

ruby-bdb-0.6.5-3.fc12.i686.rpm

# general exception
class BDB::LockError < Exception
end

# Lock not held by locker
#
# inherit from BDB::LockError
class BDB::LockHeld < BDB::LockError
end

# Lock not granted
#
# inherit from BDB::LockError
class BDB::LockGranted < BDB::LockError
end

# Locker killed to resolve a deadlock
#
# inherit from BDB::LockError
class BDB::LockDead < BDB::LockError
end