[Zope-Checkins] CVS: Zope3/lib/python/Zope/Publisher - Exceptions.py:1.1.2.10
Andreas Jung
andreas@digicool.com
Thu, 10 Jan 2002 12:17:02 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/Publisher
In directory cvs.zope.org:/tmp/cvs-serv17196/Publisher
Modified Files:
Tag: Zope-3x-branch
Exceptions.py
Log Message:
added NotFoundError as base class
=== Zope3/lib/python/Zope/Publisher/Exceptions.py 1.1.2.9 => 1.1.2.10 ===
from Zope.Exceptions import Unauthorized
+from Zope.Exceptions import NotFoundError
class PublishingException (Exception):
@@ -21,7 +22,7 @@
"""
-class NotFound (TraversalException):
+class NotFound (NotFoundError, TraversalException):
"""
"""
def __init__(self, ob, name, request=None):