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 during the installation of a module 

4""" 

5 

6 

7class MissingPackageOnPyPiException(Exception): 

8 

9 """ 

10 raised when a package is not found on pipy 

11 """ 

12 pass 

13 

14 

15class MissingInstalledPackageException(Exception): 

16 

17 """ 

18 raised when a package is not installed 

19 """ 

20 pass 

21 

22 

23class AnnoyingPackageException(Exception): 

24 

25 """ 

26 raised when a package is not on pypi 

27 """ 

28 pass 

29 

30 

31class MissingVersionOnPyPiException(Exception): 

32 

33 """ 

34 raised when a version is missing on pipy 

35 """ 

36 pass 

37 

38 

39class MissingVersionWheelException(Exception): 

40 

41 """ 

42 raised when a version is missing as a wheel 

43 """ 

44 pass 

45 

46 

47class MissingWheelException(Exception): 

48 

49 """ 

50 raised when a wheel is missing 

51 """ 

52 pass 

53 

54 

55class MissingReferenceException(Exception): 

56 

57 """ 

58 raised when a module is not referenced by this package 

59 """ 

60 pass 

61 

62 

63class InstallError(Exception): 

64 """ 

65 raised when a package cannot be installed 

66 """ 

67 pass 

68 

69 

70class DownloadError(Exception): 

71 """ 

72 raised when a package cannot be downloaded 

73 """ 

74 pass 

75 

76 

77class ConfigurationError(Exception): 

78 """ 

79 raised when something is wrong the current configuration 

80 """ 

81 pass 

82 

83 

84class UpdatePipError(Exception): 

85 """ 

86 raised when pip cannot be update or reinstalled 

87 """ 

88 pass 

89 

90 

91class RunCmdError(Exception): 

92 """ 

93 raised when a command line cannot be run 

94 """ 

95 pass 

96 

97 

98class WrongVersionError(Exception): 

99 """ 

100 cannot interpret a version 

101 """ 

102 pass 

103 

104 

105class WrongWheelException(Exception): 

106 """ 

107 raised when the downloaded wheel seems wrong 

108 """ 

109 pass 

110 

111 

112class UnavailableCustomBuildError(Exception): 

113 """ 

114 raise when a module does not have a custom build 

115 """ 

116 pass