Coverage for src/ensae_projects/datainc/data_exception.py: 100%

6 statements  

« prev     ^ index     » next       coverage.py v7.1.0, created at 2023-07-20 04:37 +0200

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