1 """
2 Exception classes used in dak
3
4 @contact: Debian FTP Master <ftpmaster@debian.org>
5 @copyright: 2008 Mark Hymers <mhy@debian.org>
6 @license: GNU General Public License version 2 or later
7 """
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
25 """
26 Base class for all simple errors in this module.
27 """
28
29 pass
30
31
32 -class ParseMaintError(DakError):
33 "Exception raised for errors in parsing a maintainer field."
34
35 pass
36
37
39 "Exception raised for errors in parsing a changes file."
40
41 pass
42
43
45 "Exception raised for invalid dsc files."
46
47 pass
48
49
54
55
57 """Exception raised for missing files field in dsc/changes."""
58
59 pass
60
61
63 "Exception raised when files can't be overwritten."
64
65 pass
66
67
69 "Exception raised when Sendmail invocation failed."
70
71 pass
72
73
75 "Exception raised when no alternate filename was found."
76
77 pass
78
79
81 "Exception raised when transitions file can't be parsed."
82
83 pass
84
85
87 "Exception raised - could not update the database"
88
89 pass
90
91
93 "Exception raised - package already locked by someone else"
94
95 pass
96