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

30 lines
991 B
Python
Raw Normal View History

# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
"""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):
"""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."""
class NoLineSuppliedError(Exception):
"""Raised when trying to disable a message on a next line without supplying a line number."""