a separate app from the OCR app. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
9 lines
133 B
Python
9 lines
133 B
Python
from __future__ import unicode_literals
|
|
|
|
|
|
class ParserError(Exception):
|
|
"""
|
|
Base exception for file parsers
|
|
"""
|
|
pass
|