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 Helpers, inspired from `utils.py <https://github.com/winpython/winpython/blob/master/winpython/utils.py>`_ 

4""" 

5 

6 

7class WinInstallException(Exception): 

8 

9 """ 

10 exception raised by this package 

11 """ 

12 pass 

13 

14 

15class WinInstallPackageException(Exception): 

16 

17 """ 

18 exception raised by this package when installing a Python package 

19 """ 

20 pass 

21 

22 

23class WinInstallMissingDependency(Exception): 

24 """ 

25 raised when a dependency is missing 

26 """ 

27 pass 

28 

29 

30class WinInstallDistributionError(Exception): 

31 """ 

32 raised when an issue is detected in the distribution 

33 """ 

34 pass