|
Revision 307, 338 bytes
(checked in by paul, 4 years ago)
|
Remove svn:executable flags from some of the newly-added scripts. I
think that this flag is getting added automagically for some reason.
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
class dException(StandardError): |
|---|
| 2 |
""" |
|---|
| 3 |
Base class in the framework for passing exceptions. |
|---|
| 4 |
""" |
|---|
| 5 |
pass |
|---|
| 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 |
|---|