Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1""" 

2@file 

3@brief Exceptions raised by this module when getting data 

4""" 

5 

6 

7class DataNotAvailableError(Exception): 

8 """ 

9 raised data is not available 

10 """ 

11 pass 

12 

13 

14class DataFormatException(Exception): 

15 

16 """ 

17 raise when the format is unexpected 

18 """ 

19 pass 

20 

21 

22class LinkNotFoundError(Exception): 

23 

24 """ 

25 raise when a file is not found on a webpage 

26 """ 

27 pass