Continued work on GEP008: Move src/BasicUtils/_NameDisplay.py to src/gen/display.

svn: r14072
This commit is contained in:
Brian Matherly
2010-01-14 04:08:04 +00:00
parent 44cafe6abd
commit c5f54d0cfc
83 changed files with 120 additions and 126 deletions

View File

@@ -142,14 +142,3 @@ class DbError(Exception):
def __str__(self):
"Return string representation"
return self.value
class NameDisplayError(Exception):
"""
Error used to report that the name display format string is invalid.
"""
def __init__(self, value):
Exception.__init__(self)
self.value = value
def __str__(self):
return self.value