From 27fe6b1e75036ad7f62217ea74b88990831c081c Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Wed, 13 Nov 2002 21:20:45 +0000 Subject: [PATCH] [Bug #636159] Fix inheritance diagram (DatabaseError is not a subclass of InterfaceError) --- pep-0249.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pep-0249.txt b/pep-0249.txt index d052f2c43..67a0238e9 100644 --- a/pep-0249.txt +++ b/pep-0249.txt @@ -176,13 +176,13 @@ Module Interface |__Warning |__Error |__InterfaceError - |__DatabaseError - |__DataError - |__OperationalError - |__IntegrityError - |__InternalError - |__ProgrammingError - |__NotSupportedError + |__DatabaseError + |__DataError + |__OperationalError + |__IntegrityError + |__InternalError + |__ProgrammingError + |__NotSupportedError Note: The values of these exceptions are not defined. They should give the user a fairly good idea of what went wrong, though.