summaryrefslogtreecommitdiff
path: root/src/flake8/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/flake8/exceptions.py')
-rw-r--r--src/flake8/exceptions.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/flake8/exceptions.py b/src/flake8/exceptions.py
index cf8aae3..13e8996 100644
--- a/src/flake8/exceptions.py
+++ b/src/flake8/exceptions.py
@@ -13,6 +13,10 @@ class EarlyQuit(Flake8Exception):
pass
+class ExecutionError(Flake8Exception):
+ """Exception raised during execution of Flake8."""
+
+
class FailedToLoadPlugin(Flake8Exception):
"""Exception raised when a plugin fails to load."""