1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
25 """
26 Base exception class for PyChan.
27 All exceptions raised by PyChan derive from this.
28 """
29 pass
30
32 """
33 Exception raised during the initialization.
34 """
35 pass
36
38 """
39 Exception raised during the run time - for example caused by a missing name attribute in a XML file.
40 """
41 pass
42
44 """
45 An error that occured during parsing an XML file.
46 """
47
49 """
50 An error that occured during parsing an attribute.
51 """
52
54 """
55 Exception raised if private attributes/functions are used.
56 """
57
59 """
60 Internal exception used to abort iteration over the widget tree.
61 """
62