Coverage for src/pymyinstall/win_installer/win_exception.py: 100%

8 statements  

« prev     ^ index     » next       coverage.py v7.1.0, created at 2023-07-19 01:47 +0200

1""" 

2@file 

3@brief Helpers, inspired from `utils.py <https://github.com/winpython/winpython/blob/master/winpython/utils.py>`_ 

4""" 

5 

6 

7class WinInstallException(RuntimeError): 

8 

9 """ 

10 exception raised by this package 

11 """ 

12 pass 

13 

14 

15class WinInstallPackageException(RuntimeError): 

16 

17 """ 

18 exception raised by this package when installing a Python package 

19 """ 

20 pass 

21 

22 

23class WinInstallMissingDependency(RuntimeError): 

24 """ 

25 raised when a dependency is missing 

26 """ 

27 pass 

28 

29 

30class WinInstallDistributionError(RuntimeError): 

31 """ 

32 raised when an issue is detected in the distribution 

33 """ 

34 pass