merge from futz2 branch

This commit is contained in:
Matt Turnbull
2009-08-28 18:24:51 +01:00
22 changed files with 3612 additions and 3570 deletions
+5 -7
View File
@@ -1,6 +1,8 @@
class FpdbError(Exception):
pass
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)
class FpdbParseError(FpdbError):
def __init__(self,value='',hid=''):
@@ -13,8 +15,4 @@ class FpdbParseError(FpdbError):
return repr(self.value)
class DuplicateError(FpdbError):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)
pass