blob: 429379d97f07876781d8d3853c75f45e91f6380b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Copyright (c) 2016 Glenn Matthews <glenn@e-dad.net>
# 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 a unregistered message id is encountered"""
class EmptyReportError(Exception):
"""raised when a report is empty and so should not be displayed"""
|