Coverage for pyquickhelper/jenkinshelper/jenkins_exceptions.py: 100%

6 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-06-03 02:21 +0200

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