Mercurial > p > roundup > code
diff roundup/cgi/exceptions.py @ 2129:3fd672293712
add and use Reject exception [SF#700265]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 26 Mar 2004 00:44:11 +0000 |
| parents | f6d7ccce8d96 |
| children | 93bd8c4d43ef |
line wrap: on
line diff
--- a/roundup/cgi/exceptions.py Thu Mar 25 23:14:52 2004 +0000 +++ b/roundup/cgi/exceptions.py Fri Mar 26 00:44:11 2004 +0000 @@ -1,3 +1,9 @@ +#$Id: exceptions.py,v 1.4 2004-03-26 00:44:11 richard Exp $ +'''Exceptions for use in Roundup's web interface. +''' + +__docformat__ = 'restructuredtext' + import cgi class HTTPException(Exception): @@ -51,3 +57,4 @@ </body></html> '''%cgi.escape(self.args[0]) +# vim: set filetype=python ts=4 sw=4 et si
