0
0
mirror of https://github.com/python/cpython.git synced 2024-11-28 08:20:55 +01:00

Added DistutilsInternalError.

This commit is contained in:
Greg Ward 2000-03-31 02:57:31 +00:00
parent e1664bdc59
commit 318a9d7aa2

View File

@ -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