source: products/qTrackSpam/trunk/errors.py @ 3665

Last change on this file since 3665 was 1, checked in by myroslav, 18 years ago

Building directory structure

  • Property svn:eol-style set to native
File size: 261 bytes
Line 
1class TrackbackError(Exception):
2
3    def __init__(self, code, message=None):
4        self.code = code
5        self.message = message
6
7class BlacklistedURL(Exception):
8
9    def __init__(self, url, match=None):
10        self.url = url
11        self.match = match
12
Note: See TracBrowser for help on using the repository browser.