summaryrefslogtreecommitdiff
path: root/src/main/python/venv/Lib/site-packages/pylint/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/python/venv/Lib/site-packages/pylint/exceptions.py')
-rw-r--r--src/main/python/venv/Lib/site-packages/pylint/exceptions.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/main/python/venv/Lib/site-packages/pylint/exceptions.py b/src/main/python/venv/Lib/site-packages/pylint/exceptions.py
deleted file mode 100644
index d5dd17f..0000000
--- a/src/main/python/venv/Lib/site-packages/pylint/exceptions.py
+++ /dev/null
@@ -1,29 +0,0 @@
-# -*- coding: utf-8 -*-
-# Copyright (c) 2016-2017 Claudiu Popa <pcmanticore@gmail.com>
-# Copyright (c) 2016 Glenn Matthews <glenn@e-dad.net>
-# Copyright (c) 2017 Łukasz Rogalski <rogalski.91@gmail.com>
-# Copyright (c) 2018 Ville Skyttä <ville.skytta@upcloud.com>
-# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
-# For details: https://github.com/PyCQA/pylint/blob/master/COPYING
-
-"""Exception classes raised by various operations within pylint."""
-
-
-class InvalidMessageError(Exception):
- """raised when a message creation, registration or addition is rejected"""
-
-
-class UnknownMessageError(Exception):
- """raised when an unregistered message id is encountered"""
-
-
-class EmptyReportError(Exception):
- """raised when a report is empty and so should not be displayed"""
-
-
-class InvalidReporterError(Exception):
- """raised when selected reporter is invalid (e.g. not found)"""
-
-
-class InvalidArgsError(ValueError):
- """raised when passed arguments are invalid, e.g., have the wrong length"""