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 Exception raised when data is not available 

4""" 

5 

6 

7class ProjectDataException(Exception): 

8 """ 

9 Exception raised when data is not available 

10 """ 

11 pass 

12 

13 

14class PasswordException(Exception): 

15 """ 

16 Raised when password is missing 

17 """ 

18 pass 

19 

20 

21class FileFormatException(Exception): 

22 """ 

23 Raised when unable to parse a file 

24 """ 

25 pass