Skip to content

Commit

Permalink
- Merge tseaver-strexp_delenda-branch to the head.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Nov 18, 2003
1 parent 5683dd0 commit 2c38879
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion __init__.py
Expand Up @@ -15,7 +15,25 @@
These exceptions are so general purpose that they don't belong in Zope
application-specific packages.
$Id: __init__.py,v 1.4 2002/08/14 22:12:06 mj Exp $
$Id: __init__.py,v 1.5 2003/11/18 13:17:21 tseaver Exp $
"""

from unauthorized import Unauthorized

class BadRequest(Exception):
pass

class InternalError(Exception):
pass

class NotFound(Exception):
pass

class Forbidden(Exception):
pass

class MethodNotAllowed(Exception):
pass

class Redirect(Exception):
pass

0 comments on commit 2c38879

Please sign in to comment.