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

17 statements  

1from pdfminer.psexceptions import PSException 

2 

3 

4class PDFException(PSException): 

5 pass 

6 

7 

8class PDFTypeError(PDFException, TypeError): 

9 pass 

10 

11 

12class PDFValueError(PDFException, ValueError): 

13 pass 

14 

15 

16class PDFObjectNotFound(PDFException): 

17 pass 

18 

19 

20class PDFNotImplementedError(PDFException, NotImplementedError): 

21 pass 

22 

23 

24class PDFKeyError(PDFException, KeyError): 

25 pass 

26 

27 

28class PDFEOFError(PDFException, EOFError): 

29 pass 

30 

31 

32class PDFIOError(PDFException, IOError): 

33 pass