root/tags/dabo-0.3.1/dException.py

Revision 678, 401 bytes (checked in by ed, 4 years ago)

Added some _IsContainer class props to some classes I missed earlier.

  • Property svn:eol-style set to native
Line 
1 class dException(StandardError):
2     """
3     Base class in the framework for passing exceptions.
4     """
5     _IsContainer = False
6    
7
8 class BeginningOfFileException(dException):
9     pass
10
11
12 class EndOfFileException(dException):
13     pass
14
15
16 class NoRecordsException(dException):
17     pass
18
19
20 class QueryException(dException):
21     pass
22
23
24 class BusinessRuleViolation(dException):
25     pass
26
27
28 class MissingPKException(dException):
29     pass
Note: See TracBrowser for help on using the browser.