summaryrefslogtreecommitdiff
path: root/pylint/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/exceptions.py')
-rw-r--r--pylint/exceptions.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/pylint/exceptions.py b/pylint/exceptions.py
index ec1e513f7..5999dcfd4 100644
--- a/pylint/exceptions.py
+++ b/pylint/exceptions.py
@@ -16,24 +16,24 @@
class InvalidMessageError(Exception):
- """raised when a message creation, registration or addition is rejected"""
+ """Raised when a message creation, registration or addition is rejected."""
class UnknownMessageError(Exception):
- """raised when an unregistered message id is encountered"""
+ """Raised when an unregistered message id is encountered."""
class EmptyReportError(Exception):
- """raised when a report is empty and so should not be displayed"""
+ """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)"""
+ """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"""
+ """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"""
+ """Raised when trying to disable a message on a next line without supplying a line number."""