Commit 504ac88a authored by Greg Ward's avatar Greg Ward

Added DistutilsInternalError.

parent 89ec70cf
......@@ -68,6 +68,11 @@ if type (RuntimeError) is types.ClassType:
class DistutilsExecError (DistutilsError):
pass
# DistutilsInternalError is raised on internal inconsistencies
# or impossibilities
class DistutilsInternalError (DistutilsError):
pass
# String-based exceptions
else:
DistutilsError = 'DistutilsError'
......@@ -80,5 +85,6 @@ else:
DistutilsValueError = 'DistutilsValueError'
DistutilsPlatformError = 'DistutilsPlatformError'
DistutilsExecError = 'DistutilsExecError'
DistutilsInternalError = 'DistutilsInternalError'
del types
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment