summaryrefslogtreecommitdiff
path: root/astroid/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'astroid/exceptions.py')
-rw-r--r--astroid/exceptions.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/astroid/exceptions.py b/astroid/exceptions.py
index 9e3a279f..47f2fe50 100644
--- a/astroid/exceptions.py
+++ b/astroid/exceptions.py
@@ -46,6 +46,10 @@ class SuperError(ResolveError):
"""Error raised when there is a problem with a super call."""
+class SuperArgumentTypeError(SuperError):
+ """Error raised when the super arguments are invalid."""
+
+
class NotFoundError(ResolveError):
"""raised when we are unable to resolve a name"""