summaryrefslogtreecommitdiff
path: root/pylint/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/exceptions.py')
-rw-r--r--pylint/exceptions.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/pylint/exceptions.py b/pylint/exceptions.py
index 30640093f..6b217e0e2 100644
--- a/pylint/exceptions.py
+++ b/pylint/exceptions.py
@@ -25,5 +25,9 @@ class InvalidReporterError(Exception):
"""raised when selected reporter is invalid (e.g. not found)"""
+class InvalidCheckerError(Exception):
+ """raised when registering an invalid checker (e.g. invalid priority)"""
+
+
class ConfigurationError(Exception):
"""Raised when the configuration is invalid."""