[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/RDB - ZopeDatabaseAdapter.py:1.5
Stephan Richter
srichter@cbu.edu
Thu, 8 Aug 2002 12:55:28 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/App/RDB
In directory cvs.zope.org:/tmp/cvs-serv6903
Modified Files:
ZopeDatabaseAdapter.py
Log Message:
During the Gadfly development a DatabaseAdapterError was created, but Albert forgot to check it in, so here it is.
=== Zope3/lib/python/Zope/App/RDB/ZopeDatabaseAdapter.py 1.4 => 1.5 ===
--- Zope3/lib/python/Zope/App/RDB/ZopeDatabaseAdapter.py:1.4 Wed Jul 17 19:16:20 2002
+++ Zope3/lib/python/Zope/App/RDB/ZopeDatabaseAdapter.py Thu Aug 8 12:55:27 2002
@@ -20,6 +20,11 @@
from Zope.App.RDB.IZopeDatabaseAdapter import IZopeDatabaseAdapter
from Zope.App.RDB.ZopeConnection import ZopeConnection
+
+class DatabaseAdapterError(Exception):
+ pass
+
+
class ZopeDatabaseAdapter(Persistent):
__implements__ = IZopeDatabaseAdapter