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 Jenkins exceptions 

4""" 

5 

6 

7class JenkinsExtException(Exception): 

8 """ 

9 Exception for the class @see cl JenkinsExt. 

10 """ 

11 pass 

12 

13 

14class JenkinsExtPyException(Exception): 

15 """ 

16 Exception for the class @see cl JenkinsExt, 

17 when a distribution is not available. 

18 """ 

19 pass 

20 

21 

22class JenkinsJobException(Exception): 

23 """ 

24 Exception for the class @see cl JenkinsExt, 

25 the job definition is wrong. 

26 """ 

27 pass