Added the first text parser backend (PDF) and updated the requirements files and README

This commit is contained in:
Roberto Rosario
2011-07-18 04:06:59 -04:00
parent 5bfd607b31
commit d566dfbb1d
5 changed files with 56 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
class ParserError(Exception):
"""
Raised when a text parser fails to understand a file it been passed
or the resulting parsed text is invalid
"""
pass
class ParserUnknownFile(Exception):
pass