13 lines
162 B
Python
13 lines
162 B
Python
class OCRError(Exception):
|
|
"""
|
|
Raised by the OCR backend
|
|
"""
|
|
pass
|
|
|
|
|
|
class UnpaperError(Exception):
|
|
"""
|
|
Raised by unpaper
|
|
"""
|
|
pass
|