third_party.pylibs.pylint.src/pylint/exceptions.py

33 lines
1.2 KiB
Python
Raw Normal View History

2020-08-20 16:40:19 +00:00
# Copyright (c) 2016-2018, 2020 Claudiu Popa <pcmanticore@gmail.com>
# Copyright (c) 2016 Glenn Matthews <glenn@e-dad.net>
2017-12-15 11:24:15 +00:00
# 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"""
2018-09-16 15:33:50 +00:00
class UnknownMessageError(Exception):
2018-01-30 20:41:03 +00:00
"""raised when an unregistered message id is encountered"""
2018-09-16 15:33:50 +00:00
class EmptyReportError(Exception):
"""raised when a report is empty and so should not be displayed"""
2018-09-16 15:33:50 +00:00
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"""