1
2
3
4
5
6
7
8
9
10
11
12
13
14 __doc__= """Zenoss exceptions
15
16 Some common exceptions detected by layers close to the GUI,
17 which can be caught by things such as dmd.error_handler()
18 """
19
20
21 from Products.ZenUtils.Exceptions import ZentinelException
22
24 """
25 General problem with the event system.
26 """
27
29 """MySQL or ZEO backend database connection is lost.
30 """
31
33 """MySQL database connection is lost.
34 """
35
37 """
38 Lookup of event failed
39 """
40
42 """
43 User-supplied threshold Python expression caused
44 a traceback.
45 """
46
48 """
49 User-supplied threshold RPN expression caused
50 a traceback.
51 """
52