Adding some exception classes

Change-Id: I6835f4d20ef1e1d934f60bc096e79b63079f7e92
This commit is contained in:
Manuel Desbonnet 2012-09-19 08:50:57 +01:00
parent 49fece8487
commit 08d8f1eaaf
1 changed files with 9 additions and 0 deletions

9
jenkins_jobs/errors.py Normal file
View File

@ -0,0 +1,9 @@
"""Exception classes for jenkins_jobs errors"""
class JenkinsJobsException(Exception):
pass
class YAMLFormatError(JenkinsJobsException):
pass