From 5557e3627df67211f5b6406d07995dccb02196f9 Mon Sep 17 00:00:00 2001 From: sudhir mohanraj Date: Sat, 23 Feb 2019 14:47:46 -0500 Subject: [PATCH] ERR: doc update for ParsingError (#25414) Closes gh-22881 --- pandas/errors/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandas/errors/__init__.py b/pandas/errors/__init__.py index c57d27ff03ac6..493ee65f63c6a 100644 --- a/pandas/errors/__init__.py +++ b/pandas/errors/__init__.py @@ -32,6 +32,8 @@ class UnsortedIndexError(KeyError): class ParserError(ValueError): """ Exception that is raised by an error encountered in `pd.read_csv`. + + e.g. HTML Parsing will raise this error. """