diff options
Diffstat (limited to 'astroid/exceptions.py')
-rw-r--r-- | astroid/exceptions.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/astroid/exceptions.py b/astroid/exceptions.py index d1094cec..9e3a279f 100644 --- a/astroid/exceptions.py +++ b/astroid/exceptions.py @@ -42,6 +42,10 @@ class InconsistentMroError(MroError): """Error raised when a class's MRO is inconsistent.""" +class SuperError(ResolveError): + """Error raised when there is a problem with a super call.""" + + class NotFoundError(ResolveError): """raised when we are unable to resolve a name""" |