Coverage for /pythoncovmergedfiles/medio/medio/src/pdfminer.six/pdfminer/pdfexceptions.py: 100%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1from pdfminer.psexceptions import PSException
4class PDFException(PSException):
5 pass
8class PDFTypeError(PDFException, TypeError):
9 pass
12class PDFValueError(PDFException, ValueError):
13 pass
16class PDFObjectNotFound(PDFException):
17 pass
20class PDFNotImplementedError(PDFException, NotImplementedError):
21 pass
24class PDFKeyError(PDFException, KeyError):
25 pass
28class PDFEOFError(PDFException, EOFError):
29 pass
32class PDFIOError(PDFException, IOError):
33 pass