1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 __doc__ = \
21 """
22 Exception Classes
23 """
24
25 __author__ = "Armand Lynch <lyncha@users.sourceforge.net>"
26 __copyright__ = "Copyright 2006-2011, Armand Lynch"
27 __license__ = "LGPL"
28 __url__ = "http://celljam.net/"
29
30
32 """
33 pywurfl base exception class.
34 """
35 pass
36
37
39 """
40 General exception class
41
42 Raised when an operation should not continue if an object exists.
43 """
44
45
47 """
48 Device Not Found exception class
49
50 Raised when pywurfl cannot find a device by using either select_*
51 API functions.
52 """
53 pass
54
55
57 """
58 Actual Device Root Not Found exception class
59
60 Raised when pywurfl cannot find an actual device root by using either
61 select_* API functions.
62 """
63 pass
64