[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces - http.py:1.3

Sidnei da Silva sidnei@x3ng.com.br
Sat, 29 Mar 2003 12:01:51 -0500


Update of /cvs-repository/Zope3/src/zope/app/interfaces
In directory cvs.zope.org:/tmp/cvs-serv24966/src/zope/app/interfaces

Modified Files:
	http.py 
Log Message:
Adding marker interface for HTTP Exception Views

=== Zope3/src/zope/app/interfaces/http.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/interfaces/http.py:1.2	Tue Feb 11 10:59:49 2003
+++ Zope3/src/zope/app/interfaces/http.py	Sat Mar 29 12:01:50 2003
@@ -23,3 +23,9 @@
 
     container = Attribute("The container of the future resource")
     name = Attribute("The name of the object to be created.")
+
+class IHTTPException(Interface):
+    """Marker interface for http exceptions views
+    """
+    pass
+