summaryrefslogtreecommitdiff
path: root/pylint/exceptions.py
blob: fa3f0ffb6e44bc0b9fac2aaf42ab81051687ff36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Copyright (c) 2016-2018, 2020 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@iki.fi>
# Copyright (c) 2019 Thomas Hisch <t.hisch@gmail.com>
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
# Copyright (c) 2020 Anthony Sottile <asottile@umich.edu>
# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.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"""